HTML 5
HTML 5
1 HTML-Lists
HTML Lists
Types of Lists
Unordered Lists
Ordered Lists
Definition list
An ordered or unordered list is made up of one or more items and each item is represented by <li> tag.
Ordered List:
Numbered Numbered
<OL> 1. List item 1
<LI>List item 1 2. List item 2
<LI>List item 2 3. List item 3
<LI>List item 3 4. List item 4
<LI>List item 4 Numbered Special Start
</OL> 5. List item 1
6. List item 2
Numbered Special Start 7. List item 3
<OL start="5"> 8. List item 4
<LI>List item 1 Lowercase Letters
HTML 4.0.1 HTML-Lists
Definition List
<DL> Definition Term
<DT>Definition Term Definition of the term
<DD>Definition of the term Definition Term
<DT>Definition Term Definition of the term
<DD>Definition of the term
</DL>