-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
26 lines (22 loc) · 1.11 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap Learning</title>
<!-- Bootstrap CDN Link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<button type="button" class="btn btn-primary">Primary</button>
<div class="container-fluid">
<h1 class="text-center text-uppercase text-success bg-light">My First Bootstrap Page</h1>
<p class="border border-primary border-2 rounded-4 pt-4 mb-5 ps-lg-3">This <span class="text-uppercase"> part is
inside </span> a .container class.</p>
<p class="h3 text-capitalize">The .container class provides a responsive fixed width container.</p>
<p>Resize the browser window to see that the container width will change at different breakpoints.</p>
<button type="button" class="btn btn-dark w-50">Dark</button>
</div>
</body>
</html>