Bootstrap Buttons
home
Run
screen_rotation
fullscreen
cloud_download
<html> <head> <title>Bootstrap Grid</title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <div class="row" style="margin:50px;"> <div class="col-sm-12"> <button class="btn btn-info btn-lg " type="button">Button Largel</button><br><br> <button class="btn btn-info " type="button">Button Default</button><br><br> <button class="btn btn-info btn-sm" type="button">Button Small</button><br><br> <button class="btn btn-info btn-xs" type="button">Button Extra Small</button><br><br> <button class="btn btn-info btn-block" type="button">Button Block Level </button><br><br> </div> </div> </div> </body> </html>
<html> <head> <title>Bootstrap Grid</title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <div class="row" style="margin:50px;"> <div class="col-sm-12"> <button class="btn btn-info btn-lg " type="button">Button Largel</button><br><br> <button class="btn btn-info " type="button">Button Default</button><br><br> <button class="btn btn-info btn-sm" type="button">Button Small</button><br><br> <button class="btn btn-info btn-xs" type="button">Button Extra Small</button><br><br> <button class="btn btn-info btn-block" type="button">Button Block Level </button><br><br> </div> </div> </div> </body> </html>
Copyrights@tutorialsplane.com