content-047-ref.html (328B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 body { 6 margin: 0px; 7 } 8 .test { 9 color: green; 10 } 11 p { 12 margin-left: 8px; 13 } 14 </style> 15 <body> 16 <div class="test">PASS PASS</div> 17 <p>Test passes if the words "PASS PASS" appear above this text.</p> 18 </body>