I wish to move the matcha img
to the right, and to have the text below them. I tried using margin-left
and margin-bottom
but it did not help.
#hotlatte img {
border: solid #664d00;
border-width: 5px;
border-radius: 60px;
width: 300px;
height: 400px;
padding: 10px;
}
#matcha img {
border: solid #664d00;
border-width: 5px;
border-radius: 60px;
width: 300px;
height: 400px;
padding: 10px;
}
.namesofdrinks {
font-style: italic;
font-size: 28px;
color: #804500 ;
font-family:'Courier New', Courier, monospace;
}
<div id="hotlatte">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Latte_art_3.jpg/1920px-Latte_art_3.jpg" alt="coffe latte" />
</div>
<h3 class="namesofdrinks">Coffe latte</h3>
<div id="matcha">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Matcha_%286328677556%29.jpg/1920px-Matcha_%286328677556%29.jpg" alt="matcha">
<h3 class="namesofdrinks">Matcha Coffe</h3>
</div>