What does this code display?

An image slightly rotated counterclockwiseAn image rotated counterclockwise and turned upside downAn image rotated clockwise and turned upside downAn image rotated clockwise

An image slightly rotated counterclockwise.

<html>
<head>
   <style>img {
transform: rotate(-10deg);
}

body {
  text-align: center;
}</style>
</head>
<body>
   <h3>Tracebook</h3>
   <p>Make sure your photo looks right before setting it as a profile image</p>
    <br>
    <img src="https://mimo.app/r/edd.png">
</body>
</html>]]>