generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresponse.html
100 lines (90 loc) · 4.49 KB
/
response.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!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="description" content="Information on developing responsible fire lighting skills for Bushcraft">
<meta name="keywords" content="survival, bushcraft, firelighting, battening, feather-sticks, fire,
kindling, birch-bark, camp-fire, heat, camp-cooking, water-purification">
<link rel="stylesheet" href="assets/css/style.css">
<title>Enjoy-Fire-Response-Dump</title>
</head>
<body>
<nav class="bar navbar">
<div class="navbar-container">
<a href="index.html" aria-label="This link takes you to the top of the Enjoy Fire page">
<h1 class="logo">
<i class="fa-solid fa-fire-flame-curved"></i>
Enjoy Fire!
</h1>
</a>
<!-- code copied from https://codepen.io/alvarotrigo/pen/XWejzjR modified slightly-->
<label id="dummy-checkbox-label" for="dummy-checkbox">This is a dummy lable to make the hamburger menu work</label>
<input type="checkbox" name="checkbox" id="dummy-checkbox">
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<!-- end of copied code -->
<ul class="main-menu-items" aria-labelledby="mm-lightfire mm-tools mm-responsible-fire-lighting mm-stay-in-touch">
<li >
<a id="mm-lightfire" href="index.html#lightfire">Light a Fire!</a>
</li>
<li>
<a id="mm-tools" href="index.html#tools">Tools</a>
</li>
<li>
<a id="mm-responsible-fire-lighting" href="index.html#responsible-fire-lighting">Responsible Fire Lighting</a>
</li>
<li>
<a id="mm-stay-in-touch" href="index.html#stay-in-touch">Stay In Touch</a>
</li>
</ul>
</div>
</nav>
<!-- Stay In Touch Response section-->
<section id="reponse" class="section-wrapper">
<div class="section-content-outer-wrapper" id="response-content-outer-wrapper">
<div id="left-content" class="section-content-left">
<h1>Thank You!</h1>
<h2>for sending us your details!</h2>
<h2>We look forward to keeping in touch!</h2>
</div>
<!-- Stay in touch image -->
<div class="section-content-right" id="stay-in-touch-img-wrapper">
<figure class="section-content-right-figure">
<img class="section-content-right-img" id="stay-in-touch-img" src="assets/images/stay-in-touch.jpg" alt="Friends heating up marshmallows round a fire">
<figcaption class="text-right">Friends heating up marshmallows round a fire.[photo:pexels Ivan Samkov 9630140]</figcaption>
</figure>
</div>
</div>
</section>
<!-- footer copied from Love Running Project: Code Institute and modified slightly-->
<footer id="footer-response" class="bar">
<ul class="social-networks">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)">
<i class="fa-brands fa-twitter-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="fa-brands fa-instagram-square"></i>
</a>
</li>
</ul>
</footer>
<!-- fontawesome script -->
<script src="https://kit.fontawesome.com/7299876a46.js" crossorigin="anonymous"></script>
</body>
</html>