<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Lists: Hebrew</title>
  <style type="text/css">
   li { list-style-type: hebrew; }
  </style>
 </head>
 <body>
  <p>The following three list numbers should be different.</p>
  <ol start="5">
   <li> (hebrew for 5) </li>
  </ol>
  <ol start="5000">
   <li> (hebrew for 5000) </li>
  </ol>
  <ol start="5000000">
   <li> (hebrew for 5000000) </li>
  </ol>
 </body>
</html>
