- 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
Bootstrap Form Input
The most common form text field is the input field. This is where users will enter most of the essential form data. Bootstrap offers support for all native HTML5 input types: text, password, datetime,datetime-local, date, month, time, week, number, email, url, search, tel, and color. The proper type declaration is required to make Inputs fully styled.
You can try to run the following code to learn how to work with form input in Bootstrap
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Form Input</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 Articles
- Container for form input and label with Bootstrap
- input-lg Bootstrap class
- Bootstrap class input-group
- Bootstrap class input-group-sm
- Bootstrap class input-group-xs
- Usage of Bootstrap Input Groups
- Bootstrap input-group-btn class
- Bootstrap class input-group-lg
- Small input field with Bootstrap
- Large input group with Bootstrap
- Small input group with Bootstrap
- Large input field with Bootstrap
- Bootstrap form structure
- Bootstrap Inline Form
- Bootstrap Horizontal Form

Advertisements