0% found this document useful (0 votes)
27 views

HTML Tags Chart4

The document describes different types of ordered lists that can be created in HTML, including numbered lists, lists that start with a custom number, lists using lowercase and capital letters, lowercase and capital Roman numerals, and lists that start with a custom letter or numeral. Each list item contains the label and text "List item 1", "List item 2" etc to demonstrate the different numbering styles.

Uploaded by

gaurav7771
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views

HTML Tags Chart4

The document describes different types of ordered lists that can be created in HTML, including numbered lists, lists that start with a custom number, lists using lowercase and capital letters, lowercase and capital Roman numerals, and lists that start with a custom letter or numeral. Each list item contains the label and text "List item 1", "List item 2" etc to demonstrate the different numbering styles.

Uploaded by

gaurav7771
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

<meta http-equiv="Pragma" content="no-

<meta> meta Nothing will show (Tip)


cache">
<meta> meta <meta name="rating" content="General"> Nothing will show (Tip)
<meta> meta <meta name="robots" content="all"> Nothing will show (Tip)
<meta name="robots"
<meta> meta Nothing will show (Tip)
content="noindex,follow">
Numbered Numbered

<ol> 1. List item 1


<li>List item 1</li> 2. List item 2
<li>List item 2</li> 3. List item 3
<li>List item 3</li> 4. List item 4
<li>List item 4</li>
</ol>
Numbered Special Start
Numbered Special Start
5. List item 1
<ol start="5"> 6. List item 2
<li>List item 1</li> 7. List item 3
<li>List item 2</li> 8. List item 4
<li>List item 3</li>
<li>List item 4</li> Lowercase Letters
</ol>
a. List item 1
Lowercase Letters b. List item 2
c. List item 3
<ol type="a"> d. List item 4
<li>List item 1</li>
<li>List item 2</li> Capital Letters
<li>List item 3</li>
<li>List item 4</li>
</ol> A. List item 1
B. List item 2
ordered C. List item 3
<ol> Capital Letters
list D. List item 4
<ol type="A">
<li>List item 1</li> Capital Letters Special
<li>List item 2</li> Start
<li>List item 3</li>
<li>List item 4</li> C. List item 1
</ol> D. List item 2
E. List item 3
Capital Letters Special Start F. List item 4

<ol type="A" start="3"> Lowercase Roman


<li>List item 1</li> Numerals
<li>List item 2</li>
<li>List item 3</li> i. List item 1
<li>List item 4</li> ii. List item 2
</ol> iii. List item 3
iv. List item 4
Lowercase Roman Numerals
Capital Roman Numerals
<ol type="i">
<li>List item 1</li>
I. List item 1
<li>List item 2</li>
II. List item 2
<li>List item 3</li>
III. List item 3
<li>List item 4</li>
IV. List item 4
</ol>

You might also like