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

HTML 5

About html

Uploaded by

dhuhithab
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)
7 views

HTML 5

About html

Uploaded by

dhuhithab
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/ 3

HTML 4.0.

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.

HTML Unordered Lists


Example 1: Example 1:
<UL>  List item 1
<LI>List item 1  List item 2
<LI>List item 2
</UL> Example 2:
 List item 1
Example 2:  List item 2
<UL type="disc"> o List item 3
<LI>List item 1 o List item 4
<LI>List item 2
<UL type="circle">
<LI>List item 3
<LI>List item 4
</UL>
</UL>

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

<LI>List item 2 a. List item 1


<LI>List item 3 b. List item 2
<LI>List item 4 c. List item 3
</OL> d. List item 4
Capital Letters Special Start
Lowercase Letters C. List item 1
<OL type="a"> D. List item 2
<LI>List item 1 E. List item 3
<LI>List item 2 F. List item 4
<LI>List item 3 Lowercase Roman Numerals
<LI>List item 4 i. List item 1
</OL> ii. List item 2
iii. List item 3
Capital Letters Special Start iv. List item 4
<OL type="A" start="3"> Capital Roman Numerals Special Start
<LI>List item 1 VII. List item 1
<LI>List item 2 VIII. List item 2
<LI>List item 3 IX. List item 3
<LI>List item 4 X. List item 4
</OL>

Lowercase Roman Numerals


<OL type="i">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>

Capital Roman Numerals Special Start


<OL type="I" start="7">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>
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>

You might also like