-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
67 lines (62 loc) · 2.74 KB
/
about.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="(description of website)" />
<meta name="author" content="(name of author)" />
<title>(Site or Page Identifier)</title>
<!-- Favicon-->
<!--use a small image for favicon-->
<link rel="icon" type="image/png" href="(favicon image)" />
<!-- Custom -->
<link href="./css/custom.css" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="./css/styles.css" rel="stylesheet" />
</head>
<body>
<!-- Responsive navbar-->
<!-- Page Content-->
<div class="container px-4 px-lg-5">
<div class="row d-flex justify-content-center gx-4 gx-lg-5 gy-4 py-4 ">
<div class="card text-dark bg-light mx-4 mb-5">
<div class="card-header">Header</div>
<div class="card-body">
<h5 class="card-title">Light card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the
card's content.</p>
<a class="btn btn-secondary" href="#!">Call to Action!</a>
</div>
</div>
<div class="card text-dark bg-light mx-4 mb-5">
<div class="card-header">Header</div>
<div class="card-body">
<h5 class="card-title">Light card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the
card's content.</p>
<a class="btn btn-secondary" href="#!">Call to Action!</a>
</div>
</div>
<div class="card text-dark bg-light mx-4 mb-5">
<div class="card-header">Header</div>
<div class="card-body">
<h5 class="card-title">Light card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the
card's content. </p>
<a class="btn btn-secondary" href="#!">Call to Action!</a>
</div>
</div>
</div>
</div>
<!-- Footer-->
<footer class="py-5 bg-dark">
<div class="container px-lg-5">
<p class="m-2 text-center text-white">Copyright © (Copyright Name) 2024</p>
</div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>