-
Notifications
You must be signed in to change notification settings - Fork 1
/
events.html
85 lines (74 loc) · 3.67 KB
/
events.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Brown CSA | Events</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 rel="stylesheet" href="css/events.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 id="common">
<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 = "membership.html" class = "hvr-fade"> Membership </a>
</li>
<!-- <li>
<a href = "contact.html" class = "hvr-fade"> Contact Us </a>
</li> -->
</ul>
</div>
<div class="container">
<h1>Events</h1>
<h5 class="waitMessage">Stay tuned for more events!</h5>
<script type="text/javascript" src="https://www.juicer.io/embed/browncsa/embed-code.js?gutter=20" async defer></script>
</div>
</div>
</body>