Created
February 18, 2026 05:01
-
-
Save cvvishalkumar/3a9336bb49c9fcf4b1f2c3839004f1fe to your computer and use it in GitHub Desktop.
Bootstrap_Blank_Form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Bootstrap Example</title> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h2>Form Name</h2> | |
| <form> | |
| <div class="form-group"> | |
| <label for="exampleFormControlInput1">Email address</label> | |
| <input type="email" class="form-control" id="exampleFormControlInput1" placeholder="name@example.com"> | |
| </div> | |
| <div class="form-group"> | |
| <label for="exampleFormControlSelect1">Example select</label> | |
| <select class="form-control" id="exampleFormControlSelect1"> | |
| <option>1</option> | |
| <option>2</option> | |
| <option>3</option> | |
| <option>4</option> | |
| <option>5</option> | |
| </select> | |
| </div> | |
| <div class="form-group"> | |
| <label for="exampleFormControlSelect2">Example multiple select</label> | |
| <select multiple class="form-control" id="exampleFormControlSelect2"> | |
| <option>1</option> | |
| <option>2</option> | |
| <option>3</option> | |
| <option>4</option> | |
| <option>5</option> | |
| </select> | |
| </div> | |
| <div class="form-group"> | |
| <label for="exampleFormControlTextarea1">Example textarea</label> | |
| <textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea> | |
| </div> | |
| <button type="submit" class="btn btn-default">Submit</button> | |
| <br><br> | |
| </form> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment