Great websites display images, links, and text and use dynamic content and multimedia. But they also look good.

We'll now move on to making good-looking websites with the help of a computer language called CSS.

<html>
<head>
<style>
body {
background-color: #386467;
text-align: center;
}
img {
border-radius:10px;
}
h2 {
color: white;
}
p {
font-family: verdana;
font-size: 20px;
color: #F4A59F;
font-style:italic;
}
</style>
</head>
<body>
<br>
<img src="https://getmimo.com/r/flowers.png" width="130">
<h2>Delightful Flowers by Anna</h2>
<p>on sale now</p>
</body>
</html>
]]>