-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutility.html
48 lines (35 loc) · 1.96 KB
/
utility.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
41
42
43
44
45
46
47
48
<!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>
<!-- Margin and Padding -->
<div class="bg-primary my-3 px-5">Margin on the Y axis and padding on the X axis</div>
<div class="bg-success mx-5 py-5">Margin on the X axis and padding on the Y axis</div>
<div class="bg-warning mt-5 mb-4 ps-4">margin top & bottom, padding start(left)</div>
<div class="bg-warning ms-5 me-4 pe-4 pb-5">margin start & end, padding end(right) padding bottom</div>
<!-- Borders -->
<div class="m-5 p-3 border">Default Border</div>
<div class="m-3 p-4 border-top border-bottom border-primary">Border top and border bottom</div>
<div class="m-5 p-5 border-start border-end border-success">Border Start and Border end</div>
<div class="m-3 p-4 border-start border-danger border-5">Thick border</div>
<!-- for rounded borders -->
<div class="m-3 p-3 rounded border border-5 ">Rounded Border</div>
<!-- rounded-pill takes a pill shape -->
<div class="m-3 p-3 rounded-pill border border-5 ">Rounded Border</div>
<!-- Box shadow -->
<div class="m-3 p-3 shadow-sm">Small box-shadow</div>
<div class="m-3 p-3 shadow-lg border">Large box-shadow</div>
<!-- Font weight -->
<div class="ms-4 fw-bold">Bold Txt</div>
<div class="ms-4 fw-bolder">Bolder Txt</div>
<div class="ms-4 fst-italic">Italic Txt</div>
<div class="ms-4 fst-italic fw-light">Italic Light Txt</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>