'start' specifies the starting number in an ordered list : ol « Tags « HTML / CSS






'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>  

    
      
        
    
  








Related examples in the same category

1.'ol' creates an indented numbered (ordered) list
2.'type' defines the style for the list items
3.Unordered Lists
4.OL tag
5.Style for 'ol li'
6.list-style: none for OL
7.Add border to LI tag
8.Nested OL tag
9.Three level OL list
10.ol elements without a type attribute: have a numeric sequence type (i.e., 1, 2, ...)
11.A nested ordered list
12.Example of the start Attribute
13.Example of the value Attribute
14.Ordered lists started at 5
15.Numbering options on ordered lists
16.ol { counter-reset:Item }
17.Ordered List Example
18.ol {list-style-type: lower-roman;}