Тег <ol></ol>




Этот тег определяет упорядоченный список.



Аргумент Значение
type 1
a
A
i
I
start number
reversed reversed




index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>Name Page</title>
  • </head>
  • <body>
  •  <ol type="a">
  •   <li>Hello World!</li>
  •   <li>To be or not to be?</li>
  •   <li>Привет Мир!</li>
  •  </ol>
  •  <ol>
  •   <li>one</li>
  •   <li>two</li>
  •   <li>three</li>
  •  </ol>
  •  <ol start="11">
  •   <li>eleven</li>
  •   <li>twelve</li>
  •   <li>thirteen</li>
  •  </ol>
  •  <ol reversed="reversed">
  •   <li>three</li>
  •   <li>two</li>
  •   <li>one</li>
  •  </ol>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>Name Page</title>
  • </head>
  • <body>
  •  <ol type="a">
  •   <li>Hello World!</li>
  •   <li>To be or not to be?</li>
  •   <li>Привет Мир!</li>
  •  </ol>
  •  <ol>
  •   <li>one</li>
  •   <li>two</li>
  •   <li>three</li>
  •  </ol>
  •  <ol start="11">
  •   <li>eleven</li>
  •   <li>twelve</li>
  •   <li>thirteen</li>
  •  </ol>
  •  <ol reversed="reversed">
  •   <li>three</li>
  •   <li>two</li>
  •   <li>one</li>
  •  </ol>
  • </body>
  • </html>