content-150-ref.html (304B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 li { 6 color: green; 7 border: 2px solid black; 8 display: block; 9 } 10 </style> 11 <body> 12 <p>Test passes if only the number "1" appears in the box below.</p> 13 <ol> 14 <li>1</li> 15 </ol> 16 </body>