Let's learn how to create progress bars with the help of percentages.

<html><head> <style>div{ border: 2px solid black; margin: 5px;}p{height: 50px; margin: 0;}.full{width: 100%; background-color: green;}.half{width: 50%; background-color: orange;}.low{width: 10%; background-color: red;}</style></head><body><h1>Progress Bars</h1> <div> <p class="full"></p></div><div> <p class="half"></p></div><div> <p class="low"></p></div></body></html>]]>