HTML/CSS/List Attributes/start 2

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

"start" specifies the starting number in an ordered list

    
<HTML>
<head>
<Title>Example For start</Title>
</head>
<BODY>
<ol start="12">
   <li>Item 1</li>
   <li>Item 2</li>
   <li>Item 3</li>
   <li>Item 4</li>
   <li>Item 5</li>
</ol>
</BODY>
</HTML>