Hey there! I'm brand new to HTML and I'm embarking on a little project for myself to enhance my skills. I have a question about adjusting the height of some text - I want it to look similar to Twitter, where each "tweet" is clearly separated from the others.
<!DOCTYPE html>
<html>
<head>
<title>My first web page!</title>
<style>
img {
width: 66px;
border-radius: 50px;
float: left;
margin-right: 10px;
}
.username {
font-weight: bold;
margin-top: 30px;
}
</style>
</head>
<body>
<img src="images/reyna.png" />
<p class="username">@Reyna</p>
<p>How do you like my new profile picture?</p>
<img src="images/killjoy.jpg" />
<p class="username">@Killjoy</p>
<p>Your profile pic is super cute!</p>
<img src="images/reyna.png" />
<p class="username">@Reyna</p>
<p>Thanks, yours is too!</p>
<img src="images/reyna.png" />
<p class="username">@Reyna</p>
<p>Hello! Jett seems really sad today :( </p>
</body>
</html>