generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththank-you.html
66 lines (59 loc) · 2.32 KB
/
thank-you.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
<!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="assets/css/style.css">
<title>First Photography</title>
</head>
<body>
<!-- Header -->
<header>
<h1 class="logo">First Photography</h1>
<!-- Navigation -->
<nav>
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- Thank you section-->
<section id="thank-you-container" class="clear-both">
<p class="section-paragraph">
Thank you for contacting First Photgraphy. We will get back to you as soon as we can.
</p>
</section>
</main>
<!-- Footer -->
<footer id="thank-you-footer" class="footer-container clear-both">
<div class="contact-links">
<!-- idea/code based on Love Running project -->
<ul>
<li>
<a href="https://www.pinterest.co.uk/" target="_blank" rel="noopener"
aria-label="Visit our Pinterest (opens in a new tab)"><i
class="fab fa-pinterest-square"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="contact.html" rel="noopener" aria-label="Contact us via our website"><i
class="far fa-envelope"></i></a>
</li>
</ul>
</div>
</footer>
<!-- font awesome script-->
<script src="https://kit.fontawesome.com/6550752797.js" crossorigin="anonymous"></script>
</body>
</html>