CSS Code to show list in decimal numbered order
HTML Code
1 2 3 4 |
<ul class="decimal-list"> <li>Item 1</li> <li>Item 2</li> </ul> |
CSS Code
1 2 3 |
.decimal-list { list-style-type: decimal; } |
Complete Code for unordered list without numbers
1 2 3 4 5 6 |
<html> <title>Page Title</title> <body> <ul class="decimal-list"> <li>Item 1</li> <li>Item 2</li> </ul> </body> </html> |
Complete Code for list with numbers
1 2 3 4 5 6 7 8 9 |
<html> <title>Page Title</title> <style> ul { list-style-type: decimal; } </style> <body> <ul class="decimal-list"> <li>Item 1</li> <li>Item 2</li> </ul> </body> </html> |