list-1.html 601 B

1234567891011121314151617181920212223
  1. <!DOCTYPE HTML>
  2. <head>
  3. <link rel="stylesheet" type="text/css" href="ahem.css" />
  4. <style>
  5. div { background: yellow; line-height: 1.0; border: 1px solid red; font-size: 12px; width: 480px; }
  6. ol { width: 480px;}
  7. li { font-family: ahem; }
  8. </style>
  9. </head>
  10. <!--
  11. In a 480px container, the minimum font size at 15em per line is 32px.
  12. This means we map 0px-48px into 32px-48px, so 12px gets mapped to 36px.
  13. -->
  14. <body>
  15. <div>
  16. <ol>
  17. <li>Separate interface design from internals</li>
  18. <li>Enable multiple user-interface strategies</li>
  19. <li>Enable multiple-platform support</li>
  20. </ol>
  21. </div>
  22. </body>