Programs in Bootstrap
1. Bootstrap buttons example.<html> <head> <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"> <script src="js/jquery.min.js"></script> </head> <body> <button type="button" class="btn btn-default">Default</button> <button type="button" class="btn btn-primary">Primary</button> <button type="button" class="btn btn-warning">Warning</button> <button type="button" class="btn btn-danger">Danger</button> <button type="button" class="btn btn-success">Success</button> <button type="button" class="btn btn-info">Info</button> <script src="js/bootstrap.min.js"></script> </body> </html>Output :
Father of JavaScript