-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
53 lines (50 loc) · 1.46 KB
/
about.html
File metadata and controls
53 lines (50 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme_color" content="#bfbfbf" />
<link
rel="shortcut icon"
href="assets/fav-logo.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="/assets/bootstrap.min.css" />
<link rel="manifest" href="manifest.json" />
<title>SW PWA</title>
</head>
<body class="bg-light">
<!-- Brand Start-->
<div class="container-fluid border-bottom shadow">
<div class="row my-2 justify-content-center">
<div class="col-auto">
<img width="300" src="/assets/sw-new-logo.png" alt="" />
</div>
</div>
</div>
<!-- Brand End-->
<!-- Page Content Start -->
<div class="container-fluid my-5">
<br /><br /><br />
<h1 class="fs-1 text-center">This is About Page !!</h1>
</div>
<!-- Page Content End -->
<!-- Sticky Footer Start -->
<div class="container-fluid fixed-bottom border-top">
<div class="row justify-content-center my-3">
<div class="col-auto">
<a class="btn btn-dark" href="/">Home</a>
<a class="btn btn-secondary mx-2" href="/about.html"
>About</a
>
<a class="btn btn-dark" href="/contact.html">Contact</a>
</div>
</div>
</div>
<!-- Sticky Footer End -->
<!-- JS Linking Start End -->
<script src="/assets/script.js" defer></script>
<!-- JS Linking End -->
</body>
</html>