generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththankyou.html
64 lines (61 loc) · 2.8 KB
/
thankyou.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
<!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="mind and body club, for yoga, pilates, meditation and mindfulness">
<meta name="keywords" content="mind and body, yoga, pilates, meditation, mindfulness">
<link rel="stylesheet" href="assets/css/style.css">
<title>Mind&Body</title>
</head>
<body>
<!-- Header and icon navigation -->
<header>
<a href="index.html">
<h1 id="logo">Mind & Body</h1>
</a>
<nav id="menu">
<ul>
<li><a href="signup.html">Sign Up</a></li>
<li><a href="classes.html">Classes</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</header>
<!-- Images and thankyou section -->
<section id="photos">
<div id="photos-header">
<h2><strong>Thank you for signing up!</strong></h2>
</div>
<img src="assets/images/woman_in_pink_long_sleeve_shirt_and_gray_leggings_doing_yoga.jpeg" alt="Woman In Pink Long Sleeve Shirt And Gray Leggings Doing Yoga
">
<img src="assets/images/man_doing_daily_exercises.jpeg" alt="Man Doing Daily Exercise
">
<img src="assets/images/Woman_in_Black_Sports_Brassiered_and_Black_Pants_Doing_Yoga.jpeg" alt="Woman in Black Sports Brassiered and Black Pants Doing Yoga">
<img src="assets/images/Women_doing_yoga.jpeg" alt="Women Doing Yoga
">
<img src="assets/images/Women_Doing_Yoga_Together.jpeg" alt="Women Doing Yoga Together">
<img src="assets/images/Women_Meditating_with_Their_Eyes_Closed.jpeg" alt="Women Meditating with Their Eyes Closed">
</section>
<!-- Social network links -->
<footer>
<h2>CONTACT US</h2>
<hr>
<h3>Got a question? Get in touch through our media sites!</h3>
<ul class="social-networks">
<li >
<a href="http://facebook.com" target="facebook" rel="noopener" aria-label="visit our facebook page (opens in a new tab)"><i class="fa-brands fa-square-facebook"></i></a>
</li>
<li >
<a href="http://twitter.com" target="twitter" rel="noopener" aria-label="visit our twitter page (opens in a new tab)"><i class="fa-brands fa-square-twitter"></i></a>
</li>
<li >
<a href="http://instagram.com" target="instagram" rel="noopener" aria-label="visit our instagram page (opens in a new tab)"><i class="fa-brands fa-square-instagram"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/62b6c595da.js" crossorigin="anonymous"></script>
</body>
</html>