
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 Form Label
To add a label to a form in Bootstrap, use the label. You can try to run the following code to create a label in a Bootstrap form:
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Forms</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> <form role = "form"> <div class = "form-group"> <label for = "name">Player</label> <input type = "text" class = "form-control" placeholder = "Player Name"> </div> <div class = "form-group"> <label for = "name">Rank</label> <input type = "text" class = "form-control" placeholder = "Player Rank"> </div> </form> </body> </html>
- Related Questions & Answers
- Container for form input and label with Bootstrap
- Add plain text next to a form label within a form with Bootstrap
- Allow a label to be used for form validation with Bootstrap
- Bootstrap form structure
- Bootstrap Inline Form
- Bootstrap Horizontal Form
- Bootstrap Form CheckBox
- Bootstrap Form Input
- Bootstrap Form select
- Bootstrap Form TextArea
- Usage of Bootstrap label class
- Add Red label with Bootstrap
- Form Layouts in Bootstrap
- Bootstrap Form Radio Button
- Bootstrap Form Control States
Advertisements