Let's practice our skills on using multiple classes by coding a calendar that displays the remaining days in a week.

<html><head> <style>.day{background-color: bisque; margin: 5px; padding: 10px; text-align: center;}.weekend{background-color: plum; font-style: italic;}.today{font-weight: bold; border: 2px solid gray;}.past{color: gray; background-color: lightgray;}</style></head><body> <h2>Week Calendar</h2> <p class="day past">Monday</p><p class="day past">Tuesday</p><p class="day today">Wednesday</p><p class="day">Thursday</p><p class="day">Friday</p><p class="day weekend">Sunday</p><p class="day weekend">Saturday</p></body></html>]]>