Skip to content

Instantly share code, notes, and snippets.

@ramsunvtech
Last active June 14, 2016 16:11
Show Gist options
  • Select an option

  • Save ramsunvtech/65c0b071d65892f397ad55fe11134500 to your computer and use it in GitHub Desktop.

Select an option

Save ramsunvtech/65c0b071d65892f397ad55fe11134500 to your computer and use it in GitHub Desktop.
HTML Ordered List
<!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