Let's advance our skills by working on an app that displays the amount of time apps are used on a phone.

<html> <head> <style>div{font-size: 0; border: 2px ridge gray;}.gaming{width: 40%; background-color: skyblue;}.movies{width: 35%; background-color: wheat;}.music{width: 25%; background-color: pink;}</style> </head> <body> <h2>Screen Time</h2> <div> <button class="gaming"> Gaming<br>40% </button> <button class="movies"> Movies<br>35% </button> <button class="music"> Music <br>25% </button> </div></body></html>]]>