Let's use our knowledge of div elements to style a web music player.
<html> <head> <style> div {background-color: lightcyan; text-align: center; padding: 15px;} img {width: 50px; height: 50px;} body {background-color: azure;} </style> </head> <body> <p> Currently playing: </p> <h5> The Peanutbutterers - Where's My Jelly At</h5> <div> <img src="https://mimo.app/i/player-button-previous.png"> <img src="https://mimo.app/i/player-button-play.png"> <img src="https://mimo.app/i/player-button-next.png"> <img src="https://mimo.app/i/player-button-shuffle.png"> </div> </body> </html>]]>