forked from Eugene-Kwaka/BOOTSTRAP-5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons.html
40 lines (30 loc) · 1.49 KB
/
buttons.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=\, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>BOOTSTRAP BUTTONS</title>
</head>
<body>
<!-- BUTTONS -->
<h2 class="text-decoration-underline">BUTTONS</h2>
<a href="#" class="btn btn-primary">Primary Button</a>
<button class="btn btn-danger">DO NOT PRESS THIS</button>
<!-- Button Sizes -->
<button class="btn btn-lg btn-success">Big Button</button>
<button class="btn btn-sm btn-warning">Smaller button</button>
<!-- Button Styles -->
<button class="btn btn-outline-primary">Button outline</button>
<button class="btn btn-outline-warning btn-lg">Large Button outline</button>
<!-- Button group -->
<h3 class="text-decoration-underline">Button Groups</h3>
<div class="btn-group">
<a href="" class="btn btn-primary">Button A</a>
<a href="" class="btn btn-secondary">Button B</a>
<a href="" class="btn btn-success">Button C</a>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</html>