Teaching Presentation: HTML Lists
Unordered Lists


Tags Used
- <ul> - Indicates the beginning and end of an Unordered List
- <li> - Indicates the beginning and end of each List Item
"list-style-type" Attribute
The style of bullet point can be altered as seen in the images below. The types are disc (default), circle, square, and none.


Ordered Lists


Tags Used
- <ol> - Indicates the beginning and end of an Ordered List
- <li> - Indicates the beginning and end of each List Item
"type" Attribute
The numbering style can be altered as seen in the images below. The types are standard numerals (default), upper-case letters, lower-case letters, uppercase Roman numerals, and lower-case Roman numerals.


Description Lists


Tags Used
- <dl> - Indicates the beginning and end of a Description List
- <dt> - Indicates the beginning and end of each Term
- <dd> - Indicates the beginning and end of each term's Definition