3.2.5 Set List
- Due Oct 11, 2023 by 11:59pm
- Points 5
- Submitting a text entry box or a file upload
- File Types html
The band Mount Altitude And The Mall has written up their set list, but the manager wants you to liven up the colors!
Use CSS rules in the <head> tag to make the text of the <h1>
tags red, the text of the <h2>
tags blue, and the text of the <p>
tags orange.
STARTING CODE
<!DOCTYPE html>
<html>
<head>
<title>CSS Select By Tag</title>
<!--
Make the <h1> tags red, the <h2> tags
blue and the <p> tags orange.
-->
<style>
</style>
</head>
<body>
<h1>Mount Altitude And The Mall</h1>
<h2>Today's PlayList</h2>
<p>Rotten Thoughts</p>
<p>Fierce Hearts</p>
<p>Quiet Dinosaurs</p>
<h2>Today's Encore</h2>
<p>Mysteriously Composing</p>
<p>Undoubtedly Obfuscating</p>
<p>Binary Symphony</p>
</body>
</html>