
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Style Numbering Characters in an Ordered List with CSS
The list-style-type property allows you to control the shape or style the numbering characters in ordered lists.
Example
<html> <head> </head> <body> <ol style = "list-style-type:decimal;"> <li>India</li> <li>US</li> <li>UK</li> </ol> </body> </html>
Advertisements