
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
Bootstrap Checkbox Class
When building a form, use the checkbox class if you want the user to select any number of options from a list. Use .checkbox-inline class to a series of checkboxes for controls appear on the same line.
You can try to run the following code to implement the Bootstrap checkbox class −
Example
<!DOCTYPE html> <html> <head> <title>Try v1.2 Bootstrap Online</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> <label for = "name">Favourite Live Streaming</label> <div class = "checkbox"> <label> <input type = "checkbox" value = "">Amazon Prime </label> </div> <div class = "checkbox"> <label> <input type = "checkbox" value = "">Hotstar </label> </div> </body> </html>
Advertisements