"HTML (Forms)"
Bootstrap 3.0.0 Snippet by SPFood

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html> <body> <form> Username:<br> <input type="text" name="username"> <br> Password:<br> <input type="password" name="password"> <br><br> Gender:<br> <input type="radio" name="gender" value="male" checked> Male<br> <input type="radio" name="gender" value="female"> Female<br> <br> Vehicle:<br> <input type="checkbox" name="vehicle1" value="Bike"> I have a bike<br> <input type="checkbox" name="vehicle2" value="Car"> I have a car<br> <br> Birthday:<br> <input type="date" name="birthday"><br> <br> <input type="submit" onclick="alert('Your answers have been submitted :)')" value="Submit"> <input type="reset"> </form> </body> </html>

Related: See More


Questions / Comments: