-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap5.html
More file actions
77 lines (70 loc) · 3.13 KB
/
Copy pathbootstrap5.html
File metadata and controls
77 lines (70 loc) · 3.13 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="favicon.png" type="image/png">
<title>Title</title>
<style>
button{
margin-right: 10px;
padding: 10px;
}
.progress{
border: 1px solid gray;
width: 50%;
justify-self: center;
}
</style>
</head>
<body>
<nav class="bg-info">
<ul style="list-style: none; display: flex; padding: 10px;">
<button class="btn btn-primary"> HOME </button>
<div class="dropdown">
<button type="button" class="btn btn-primary dropdown-toggle" data-bs-toggle="dropdown"> HTML </button>
<ul class="dropdown-menu">
<li><a href="#" class="dropdown-item">Tags</a></li>
<li><a href="#" class="dropdown-item">Element</a></li>
<li><a href="#" class="dropdown-item">Attribute</a></li>
<li><a href="#" class="dropdown-item">Random BS</a></li>
</ul>
</div>
<button class="btn btn-primary"> CSS </button>
<button class="btn btn-primary"> JAVA </button>
</ul>
</nav>
<div class="container p-2 mt-2" style="width: 400px; border: 1px solid black;">
<img src="pfp.jpg" alt="nga" class="card-img-top">
<div class="card-body">
<h4 class="card-title">King Canute</h4>
<p class="card-text">This is King Canute in the image. This scene took place in season 2 of Vinland saga near ending as Thorfinn and King Canute were having a deep talk about Ketil's farm.</p>
<a href="#" class="btn btn-warning">See More Info...</a>
</div>
</div>
<div class="container-fluid bg-danger mt-5 p-3">
<h1>This is the Container</h1>
<button class="btn btn-success"> This is primary button! </button>
<span class="spinner-border">Wassup</span>
</div>
<img src="pfp.jpg" alt="NGA" class="rounded-circle m-3 card">
<div class="progress">
<div class="progress-bar-striped bg-info" style="width: 30%;"></div>
</div>
<br><br>
<div class="toast show" style="display: flexbox; justify-self: center;">
<div class="toast-header">
<strong class="me-auto">Its Toast</strong>
<button type="button" class="btn-close" data-bs-dismiss="toast"></button>
</div>
<div class="toast-body">
<p>This is the Toast's Body</p>
</div>
</div>
<br><br>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>