Last active
June 14, 2016 16:11
-
-
Save ramsunvtech/65c0b071d65892f397ad55fe11134500 to your computer and use it in GitHub Desktop.
HTML Ordered List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Possible Ordered List</title> | |
| <style type="text/css"> | |
| .capitals { | |
| list-style-type: upper-alpha; | |
| } | |
| .smallCase { | |
| list-style-type: lower-alpha; | |
| } | |
| .upperRoman { | |
| list-style-type: upper-roman; | |
| } | |
| .lowerRoman { | |
| list-style-type: lower-roman; | |
| } | |
| .decimal { | |
| list-style-type: decimal; | |
| } | |
| .decimalWithZero { | |
| list-style-type: decimal-leading-zero; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <ol class="capitals"> | |
| <li>First Item</li> | |
| <li>Second Item</li> | |
| <li>Third Item</li> | |
| <li>Fourth Item</li> | |
| <li>Fifth Item</li> | |
| </ol> | |
| <ol class="smallCase"> | |
| <li>First Item</li> | |
| <li>Second Item</li> | |
| <li>Third Item</li> | |
| <li>Fourth Item</li> | |
| <li>Fifth Item</li> | |
| </ol> | |
| <ol class="upperRoman"> | |
| <li>First Item</li> | |
| <li>Second Item</li> | |
| <li>Third Item</li> | |
| <li>Fourth Item</li> | |
| <li>Fifth Item</li> | |
| </ol> | |
| <ol class="lowerRoman"> | |
| <li>First Item</li> | |
| <li>Second Item</li> | |
| <li>Third Item</li> | |
| <li>Fourth Item</li> | |
| <li>Fifth Item</li> | |
| </ol> | |
| <ol class="decimal"> | |
| <li>First Item</li> | |
| <li>Second Item</li> | |
| <li>Third Item</li> | |
| <li>Fourth Item</li> | |
| <li>Fifth Item</li> | |
| </ol> | |
| <ol class="decimalWithZero"> | |
| <li>First Item</li> | |
| <li>Second Item</li> | |
| <li>Third Item</li> | |
| <li>Fourth Item</li> | |
| <li>Fifth Item</li> | |
| </ol> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment