3.4.2 Must Do Today!
- Due Sep 30, 2024 by 11:59pm
- Points 5
- Submitting a text entry box or a file upload
- File Types html
- Available after Sep 29, 2024 at 12am
In this exercise you’ll practice styling elements by ID by selecting the most important thing to do today and making it BIG and red.
YOUR JOB
Pick the task that you think is the most important thing to do today. Give it the ID important
.
Then, write a CSS rule that selects the ID important
and gives it the color red and the font size 20px.
BONUS CHALLENGE
Pick the second and third most important tasks and give each one a special color.
STARTER CODE
<!DOCTYPE html>
<html>
<head>
<title>Important Things</title>
<style>
</style>
</head>
<body>
<h1>To Do Today</h1>
<ul>
<li>Go grocery shopping</li>
<li>Play kickball</li>
<li>Do math homework</li>
<li>Walk the dog</li>
<li>Feed the dog</li>
</ul>
</body>
</html>