first-child-000-ref.html (508B)
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 .silver { 15 color: silver; 16 } 17 </style> 18 <body> 19 <p><em>This text should be fuchsia.</em> <span class="silver">Filler text.</span></p> 20 <div>This text should be orange.</div> 21 <p class="silver">Filler text.</p> 22 <h4>This text should be blue. <span class="silver">Filler text.</span></h4> 23 </body>