class-002-ref.html (411B)
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: fuchsia; 10 border: thin solid; 11 } 12 h4 { 13 color: blue; 14 } 15 </style> 16 <body> 17 <p>This text should be fuchsia.</p> 18 <div>This text should be fuchsia with a thin fuchsia border.</div> 19 <h4>This text should be blue without any border.</h4> 20 </body>