-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
44 lines (39 loc) · 1.6 KB
/
contact.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
<!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" />
<title>CAT-O-PEDIA | Contact Us</title>
<!--bs5 CDN links-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body class="container-fluid text-light bg-dark">
<div class="container col-lg-12">
<!--Header-->
<header class="col-lg-12 text-center">
<h1 class="text-center display-1">Cat-<span class="text-info">0</span>-Pedia</h1>
<hr class="border border-3 border-info">
<h2 class="text-center display-6 text-muted">The <span class="text-info">Furriest</span> Place On The Interwebs!
</h2>
<!--Nav Links-->
<nav>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link link-info" aria-current="page" href="/photo-gallery/index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link link-info" href="/photo-gallery/about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link link-info" href="/photo-gallery/contact.html">Contact</a>
<hr class="border border-1 border-info">
</li>
</ul>
</nav>
</header>
</div>
</div>
</body>
</html>