forked from CraigThomasson/trustinsodaHackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
61 lines (56 loc) · 2.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<header>
<nav>
<a href=“index.html”>
<h1 id=“logo”><i class=“fab fa-fort-awesome-alt”></i>Centered</h1>
</a>
<ul id=“menu”>
<li>
<a href=“contact.html”>Contact</a>
</li>
<li>
<a href=“about-us.html”>About Us</a>
</li>
<li>
<a href=“login.html”>Login/Register</a>
</li>
</ul>
</nav>
</header>
<section>####</section>
<footer>
<ul class="social-networks">
<li>
<a href="https://facebook.com" target="_blank" rel= "noopener"
aria-label= "Visit our facebook page (opens in new tab)"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel= "noopener"
aria-label= "Visit our instagram page (opens in new tab)"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel= "noopener"
aria-label= "Visit our twitter page (opens in new tab)"><i class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel= "noopener"
aria-label= "Visit our youtube page (opens in new tab)"><i class="fab fa-youtube"></i></a>
</li>
</ul>
<small>© Copyright 2022, Centered. All rights reserved</small>
</footer>
<!-- Font awesome script -->
<script src="https://kit.fontawesome.com/c7dbda0798.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>
</body>
</html>