Skip to content

Commit

Permalink
Solved the issue UNO-Coders#6
Browse files Browse the repository at this point in the history
please review it @Bachittarjeet
and let me know if u need any changes
  • Loading branch information
arpan-pro-learner committed Oct 21, 2021
1 parent f2261e0 commit d1b3896
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions Bootstrap Examples/BootstrapButtons/buttons.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Bootstrap Buttons</title>
</head>

<body>
<h1 class="text-center mt-5"><u>Simple bootstrap buttons</u> </h1>
<div class="d-flex justify-content-sm-evenly flex-wrap mt-5 bg-green">

<button type="button" class=" btn btn-primary">Primary</button>
<button type="button" class=" btn btn-secondary">Secondary</button>
<button type="button" class=" btn btn-success">Success</button>
<button type="button" class=" btn btn-danger">Danger</button>
<button type="button" class=" btn btn-warning">Warning</button>
<button type="button" class=" btn btn-info">Info</button>
<button type="button" class=" btn btn-light">Light</button>
<button type="button" class=" btn btn-dark">Dark</button>

<button type="button" class="btn btn-link">Link</button>
</div>
<h1 class="text-center mt-5"><u>Outline bootstrap buttons</u> </h1>
<div class="d-flex justify-content-sm-evenly flex-wrap mt-5 bg-primary.bg-gradient">
<button type="button" class="btn btn-outline-primary">Primary</button>
<button type="button" class="btn btn-outline-secondary">Secondary</button>
<button type="button" class="btn btn-outline-success">Success</button>
<button type="button" class="btn btn-outline-danger">Danger</button>
<button type="button" class="btn btn-outline-warning">Warning</button>
<button type="button" class="btn btn-outline-info">Info</button>
<button type="button" class="btn btn-outline-light btn-outline-black">Light</button>
<button type="button" class="btn btn-outline-dark">Dark</button>
</div>



<h1 class="text-center mt-5"><u>Large bootstrap buttons</u> </h1>
<div class="d-flex justify-content-evenly flex-wrap ms-5 mt-5 ">
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-secondary btn-lg">Large button</button>

</div>




<h1 class="text-center mt-5"><u>Small bootstrap buttons</u> </h1>

<div class="d-flex justify-content-sm-evenly flex-wrap ms-5 mt-5 "> <button type="button"
class="btn btn-primary btn-sm">Small button</button>
<button type="button" class="btn btn-secondary btn-sm">Small button</button>
</div>





<h1 class="text-center mt-5"><u> Bootstrap button with Disabled state</u> </h1>
<div class="d-flex justify-content-sm-evenly flex-wrap ms-5 mt-5 ">
<button type="button" class="btn btn-lg btn-primary" disabled>Primary button</button>
<button type="button" class="btn btn-secondary btn-lg" disabled>Button</button>
</div>




<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
</body>

</html>

0 comments on commit d1b3896

Please sign in to comment.