
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
Pills with Dropdowns Bootstrap Example
To form pills with dropdowns, you can try to run the following example
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href="/https/www.tutorialspoint.com/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body style = "background: #F5CBA7;"> <h2>Website</h2> <ul class = "nav nav-pills"> <li class = "active"><a href = "#">Home</a></li> <li><a href = "#">About</a></li> <li class = "dropdown"> <a class = "dropdown-toggle" data-toggle = "dropdown" href = "#"> Products <span class = "caret"></span> </a> <ul class = "dropdown-menu"> <li><a href = "#">Online Compiler</a></li> <li><a href = "#">Image Editor</a></li> </ul> </li> <li><a href = "#">Services</a></li> <li><a href = "#">Contact</a></li> </ul> </body> </html>
Advertisements