-
Notifications
You must be signed in to change notification settings - Fork 1
/
contactThankYou.html
101 lines (91 loc) · 4.24 KB
/
contactThankYou.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Brown CSA | Contact Us Thank You</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap" rel="stylesheet">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/utils.css">
<link href="hover.css" rel="stylesheet" media="all">
<!-- JS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script type = "text/javascript" src="navigation.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Font Awesome
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="https://kit.fontawesome.com/274e33ba79.js" crossorigin="anonymous"></script>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/csaLogoBW_icon.svg">
</head>
<body style="overflow: hidden;" id = "thankYou">
<div class="boundingcontainer">
<div class="header">
<div class="homeSection" onmouseover="hover(document.getElementById('homeIcon'));"
onmouseout="unhoverNormal(document.getElementById('homeIcon'));" onclick="location.href = 'index.html';">
Brown CSA
<img id="homeIcon" src="images/csaLogo.png">
</div>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
<div class="line4"></div>
</div>
</div>
<!-- Moved dropdown outside of header and put it in dropdownContainer -->
<div class="dropdownContainer">
<ul class="nav-links">
<li>
<a href = "index.html" class = "hvr-fade"> Home </a>
</li>
<li>
<a href = "about.html" class = "hvr-fade"> About </a>
</li>
<li>
<a href = "events.html" class = "hvr-fade"> Events </a>
</li>
<li>
<a href = "membership.html" class = "hvr-fade"> Membership </a>
</li>
</ul>
</div>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="thankYouContainer">
<div class="prompt">
<div class="thankYouText">
<h3>Thank You!</h3>
<h4>Your Response Has Been Recorded.</h4>
</div>
<div class="logo">
<!-- <img src="images/csaLogoBW_icon.svg"> -->
<img src="images/csaLogoThankYou.svg" id = photo>
</div>
</div>
<!-- <div class = "bottomDecals">
<div class="frameDeco">
<img src="images/frameDecoLeftCorner.svg" style="max-width: 50%; float: left; margin-left: 20px;">
</div>
<div class="frameDeco">
<img src="images/frameDecoRightCorner.svg" style="max-width: 50%; float: right; margin-right: 20px;">
</div>
</div>
</div> -->
</div>
</body>
</html>