HTML LISTS
The two most commonly used list types in HTML web pages are Ordered lists and Unordered lists.
open online HTML editor
Online editor Works only in IE - If you use another browser you can Download Web Page Teacher.
<OL> - an ordered list contains list items preceeded by either a letter or number - example. View the source code - click here.
type="value" - following types are available for ordered lists:
- type="1" - numbers - this is default if no type is specified
- type="A" - capital letters
- type="a" - small letters
- type="I" - large roman numerals
- type="i" - small roman numerals
<UL> - an unordered list contains unordered list items - example. View the source code - click here.
type="value" - following types are available for unordered lists:
- type="disc"
- type="circle"
- type="square"