Create a order list through HTML|TechHunter
Create Order list<ol>
HTML order list created with <ol>tag
First of all let's see the attributes of HTML-
Attributes
Attribute | Value | Description |
|---|---|---|
| Reversed | reversed | Specifies that the list order should be reversed (9,8,7...) |
| Start | number | Specifies the start value of an ordered list |
| Type | 1 A a I i | Specifies the kind of marker to use in the list |
Ordered HTML List - The Type Attribute
The type attribute of the <ol> tag, defines the type of the list item marker:
| Type | Description |
|---|---|
| type="1" | The list items will be numbered with numbers (default) |
| type="A" | The list items will be numbered with uppercase letters |
| type="a" | The list items will be numbered with lowercase letters |
| type="I" | The list items will be numbered with uppercase roman numbers |
| type="i" | The list items will be numbered with lowercase roman numbers |
Comments
Post a Comment