- 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
Create a tabbed navigation menu with Bootstrap
To create a tabbed navigation menu, start with a basic unordered list with the base class of .nav and add class .nav-tabs.
You can try to run the following code to create a tabbed navigation menu
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <p>My Website</p> <ul class = "nav nav-tabs"> <li class = "active"><a href = "#">Home</a></li> <li><a href = "#">About</a></li> <li><a href = "#">Products</a></li> <li><a href = "#">Contact Us</a></li> </ul> </body> </html>
- Related Articles
- Create a tabbed menu with Bootstrap
- Indicate a tabbed menu with Bootstrap
- Create a responsive navigation menu with CSS Media Queries
- How to create a bottom navigation menu with CSS?
- How to create a pill navigation menu with CSS?
- Create Dropdown menu with Bootstrap
- How to create a fixed side navigation menu with CSS?
- How to create a responsive side navigation menu with CSS?
- How to create a curtain navigation menu with CSS and JavaScript?
- How to create a responsive navigation menu with icons, using CSS?\n
- How to create a side navigation menu with icons using CSS?\n
- How to create a responsive bottom navigation menu with CSS and JavaScript?
- How to create a responsive navigation menu with a login form inside it?
- How to create an animated, closable side navigation menu with CSS?
- How to create a mega menu (full-width dropdown menu in a navigation bar) with HTML and CSS?

Advertisements