class-000-ref.html (335B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 p { 6 color: fuchsia; 7 } 8 div { 9 color: orange; 10 } 11 h4 { 12 color: blue; 13 } 14 </style> 15 <body> 16 <p>This text should be fuchsia.</p> 17 <div>This text should be orange.</div> 18 <h4>This text should be blue.</h4> 19 </body>