List Properties
Unordered List
- disc one
- disc two
- disc three
ul {
list-style-type: disc;
}
- circle one
- circle two
- circle three
ul {
list-style-type: circle;
}
- square one
- square two
- square three
ul {
list-style-type: square;
}
Ordered List
- uppercase one
- uppercase two
- uppercase three
ol {
list-style-type: upper-alpha;
}
- lowercase one
- lowercase two
- lowercase three
ol {
list-style-type: lower-alpha;
}
- roman one
- roman two
- roman three
ol {
list-style-type: upper-roman;
}