- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Make an Ordered list with Bootstrap
For ordered list in Bootstrap, you can try to run the following code −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap lists</title> <meta name = "viewport" content = "width=device-width, initial-scale = 1"> <link rel = "stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> </head> <body> <h1>Lists</h1> <h2>Fruits (Ordered List)</h2> <ol> <li>Kiwi</li> <li>Apple</li> <li>Mango</li> </ol> </body> </html>
- Related Articles
- Make Definition list with Bootstrap
- Make Unordered list with Bootstrap
- Make an image responsive with Bootstrap
- Make an element invisible with Bootstrap
- How to create an ordered list with list items numbered with numbers in HTML?
- Style the numbering characters in an ordered list with CSS
- Create an ordered list in HTML
- How to create an ordered list with list items numbered with lowercase letters in HTML?
- How to create an ordered list with list items numbered with uppercase letters in HTML?
- How to create an ordered list with list items numbered with uppercase roman numbers in HTML?
- How to create an ordered list with list items numbered with lowercase roman numbers in HTML?
- Make an element look like a heading with Bootstrap
- How to create an ordered list in HTML?
- Make image round with Bootstrap
- Make a left-aligned with Bootstrap

Advertisements