In this project, we'll build a landing page for a streaming service.

This is how the finished project looks, with the paddings, margins, width, and height all set.

<head>
<style>
body {
background-color: black;
color: white;
text-align: center;
font-family: "Verdana", Sans-serif;
}
img {
margin: 40px;
height: 40px;
width: 150px;
}
h1 {
margin-top: 30px;
}
h3 {
margin: 20px;
font-weight:normal;
}
a {
color: red;
}
p {
margin-top: 80px;
margin-left: 30px;
margin-right: 30px;
padding: 20px;
background-color: DimGrey;
}
</style>
</head>
<body>
<img src="https://mimo.app/r/homeflix.png">
<h1>See What's Next</h1>
<h3>Watch anywhere, but mostly from home.</h3>
<a href="https://mimo.app/r/homeflix.html">Try 30 Days Free</a>
<p>Watch TV shows and movies anytime, anywhere.</p>
</body>
</html>]]>