Let's learn about CSS functions and how to use them to rotate images!

<html><head>
<style>img {
transform: rotate(80deg);
border-radius: 30px;
height:150px;
width: 150px;
} body { text-align: center; background-color:azure;} </style></head><body><h3>Cat Watch</h3><p>Have you seen this cat? If you do, give him cuddles.</p><br><img src="https://mimo.app/r/nachos.png">
</body>
</html>]]>