Bootstrap Select Inputs

 

Single select and multiselect are shown in below code snippet.

 
 
 
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Bootstrap Input Example</title> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <form role="form"> <div class="form-group"> <label>select one:</label> <select class="form-control"> <option>HTML</option> <option>ANGULAR</option> <option>TYPESCRIPT</option> <option>JAVASCRIPT</option> </select> <br> <label>Mutiple select(hold shift to select more than one):</label> <select multiple class="form-control"> <option>HTML</option> <option>ANGULAR</option> <option>TYPESCRIPT</option> <option>JAVASCRIPT</option> <option>jquey</option> </select> </div> </form> </div> </body> </html>
Output