generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform-response.html
107 lines (92 loc) · 3.32 KB
/
form-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
101
102
103
104
105
106
107
<!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="A Place for Dogs and Their Friends">
<meta name="author" content="Naomi Berhane">
<meta name="keywords" content="bone appétite, dog café">
<link rel="stylesheet" href="assets/css/style.css">
<title>Bone Appétite</title>
</head>
<body>
<header>
<!--Logo Title -->
<a href="index.html" class="remove-underline">
<h1 id="title">Bone Appétite</h1>
</a>
<!--Nav bar content-->
<nav>
<div class="navbar">
<ul class="nav-links">
<li>
<a href="index.html" aria-label="Home">Home</a>
</li>
<li>
<a href="gallery.html" aria-label="Gallery">Gallery</a>
</li>
<li>
<a href="contact.html" class="active" aria-label="Contact">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<section>
<h2 class="hero__title">Hero image</h2>
<div id="hero-image">
</div>
</section>
<!--Main Content Response Page -->
<section class="response-page">
<div class="response-text">
<div>
<h2>Thank you for joining our dog community!</h2>
</div>
<p class="response-body">
We're thrilled to have you on this pawsome adventure.<br>
Get ready for exciting dog outings and events.<br>
We'll be reaching out to you soon about our upcoming events, tailored to your dog.<br>
In the meantime, feel free to join our active Facebook community <br>
to contribute with ideas and stay updated on upcoming tail-wagging fun!
</p>
<div>
<h2>Welcome to our pack!</h2>
</div>
<div class="return-button">
<a href="index.html" class="return_button">Return To Home</a>
</div>
</div>
</section>
</main>
<!--Footer-->
<footer>
<ul class="social-media">
<li>
<a href="https://instagram.com" target="_blank" rel="noopener" aria-label="Visit our Instagram page">
<i class="fab fa-instagram"></i>
</a>
</li>
<li>
<a href="https://facebook.com" target="_blank" rel="noopener" aria-label="Visit our Facebook page">
<i class="fab fa-facebook-square"></i>
</a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener" aria-label="Visit our Twitter page">
<i class="fab fa-twitter-square"></i>
</a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel="noopener" aria-label="Visit our YouTube channel">
<i class="fab fa-youtube-square"></i>
</a>
</li>
</ul>
</footer>
<!--Script for icons "Font Awesome"-->
<script src="https://kit.fontawesome.com/04566e427e.js" crossorigin="anonymous"></script>
</body>
</html>