-
Notifications
You must be signed in to change notification settings - Fork 0
/
thankyou.html
87 lines (80 loc) · 3.99 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Running Rats Run Club | Contact Us</title>
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,400i,700|Oswald:300,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<header>
<div class="topline-navbar">
<div class="wrapper">
<nav>
<div class="hamburger"><i class="fas fa-bars"></i><span class="visually-hidden">Menu</span></div>
<ul class="main-menu">
<li class="exit-responsive"><i class="fas fa-times"></i><span class="visually-hidden">Close</span></li>
<li class="home-link"><a href="index.html" class="header-nav-link">home</a></li>
<li><a href="about.html" class="header-nav-link">about <span class="light">the rats</span></a></li>
<li><a href="tuesday.html" class="header-nav-link"><span class="light">tuesday</span> runs</a></li>
<li class="nav-logo"><a href="index.html" class="header-home-link"><div class="nav-spacer"></div></a></li>
<li><a href="crews.html" class="header-nav-link"><span class="light">run</span> crews</a></li>
<li><a href="contact.html" class="header-nav-link">contact <span class="light">us</span></a></li>
</ul>
</nav>
</div>
</div>
</header>
<main>
<section class="med-blue first-section">
<div class="wrapper">
<h2 class="white-text"><span class="light">Thank</span> you!</h2>
<p class="intro-text">Thanks for sending us a message! We’ll be sure to get back to you as soon as we can. </p>
<p class="intro-text">You’ve probably got enough time to get in an easy 5K while you wait. </p>
<p class="intro-text">And maybe a milkshake too. Hey, recovery is important.<br><br><br><br></p>
</div>
</section>
<section class="white">
<div class="wrapper">
<h3><span class="light">Join us</span> every Tuesday!</h3>
<p>Join us on our free weekly run! We meet every Tuesday at 6:00pm at the downtown Toronto Running Room, located in the PATH level of the TD Centre at Bay & King. We run all year long, rain or shine, with 7K, 10K and 13K options and people running a range of paces every week. We’re a friendly, inclusive group: all ages, genders and paces welcome. All we ask is that you can complete 7K comfortably. </p>
<p class="center"><a href="tuesday.html" class="cta">Click here to learn more!</a></p>
</div>
</section>
</main>
<footer>
<div class="wrapper footer-wrapper">
<ul class="footer-social-links">
<li><a href="https://twitter.com/runningrats"><i class="fab fa-twitter"></i><span class="visually-hidden">Twitter</span></a></li>
<li><a href="https://www.facebook.com/groups/RunningRatsMembers/"><i class="fab fa-facebook-f"></i><span class="visually-hidden">Facebook</span></a></li>
<li><a href="https://www.instagram.com/runningratsto/"><i class="fab fa-instagram"></i><span class="visually-hidden">Instagram</span></a></li>
<li><a href="https://www.strava.com/clubs/runningrats"><i class="fab fa-strava"></i><span class="visually-hidden">Strava</span></a></li>
</ul>
<div class="footer-copyright">
Copyright © Running Rats Run Club.
</div>
<div class="footer-sponsor">
<figure>
<figcaption>Sponsored by:</figcaption>
<img src="images/rrlogo.png" alt="Running Room logo">
</figure>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(function() {
$('.hamburger').on('click', function(){
// toggle class show on the menu
$('.main-menu').toggleClass('show');
});
$('.exit-responsive').on('click', function(){
// toggle class show on the menu
$('.main-menu').toggleClass('show');
});
});
</script>
</body>
</html>