HTML/CSS/List Tags/ol

Материал из Web эксперт
Перейти к: навигация, поиск

"ol" creates an indented numbered (ordered) list

   <source lang="html4strict">
   

<html> <head>

   <title>ol element example</title>

</head> <body>

  1. first item
  2. second item
  3. third item
  4. fourth item
  5. fifth item

</body> </html>


     </source>