-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail_sent.html
89 lines (75 loc) · 3.79 KB
/
email_sent.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Wellington Go Club</title>
<meta name="description" content="The Wellington Go Club is a friendly space for learning and playing the game of go (a.k.a. baduk, weiqi).">
<meta name="author" content="Jenny Sahng">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/nav.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<div class="container" id="top">
<!-- NAVBAR
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="navbar-spacer"></div>
<nav class="navbar">
<input type="checkbox" id="nav"/>
<label for="nav" class="nav-open"><i></i><i></i><i></i></label>
<div class="nav-container">
<ul class="navbar-list">
<li><a href="index.html" id="#top-link" class="navbar-link">Back to home</a></li>
</ul>
</div>
</nav>
<!-- THANK YOU
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="body-section">
<h2 class="body-header" id="email_sent">Thank you for your message</h2>
<p>
We'll get back to you as soon as possible.<br>If you don't hear from us, you can always contact <strong>Fergus</strong> on <strong>020 4085 7265</strong> or message him directly at <strong>[email protected]</strong>.
</p>
<p>
Looking forward to seeing you at one of our meetups soon!
</p>
</div>
<!-- FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="body-section footer">
Wellington Go Club 2017 © Built using <a href="http://getskeleton.com" alt="Skeleton: Responsive CSS Boilerplate" target="_blank">Skeleton CSS</a> by Jenny Sahng.<br>
</div>
</div>
<!-- SCRIPTS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- Asynchronous font loading -->
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Raleway:300,400,700' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
</body>
</html>