-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 2.51 KB
/
index.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
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="styles.css"/>
<link rel="stylesheet" href="css/bootstrap.css"/>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/markerclusterer.js"></script>
<script src="events_json.js"></script>
<script src="app.js"></script>
</head>
<body>
<div id="steam_resources_btn_wrapper">
<button class="btn btn-success">STEAM Resources</button>
</div>
<div id="map"></div>
<div id="back-button"></div>
<div id="title">
<span class="letter" id="s">
<span class="big-letter">S</span>
<span class="subtitle">SCIENCE</span>
</span>
<span class="letter" id="t">
<span class="big-letter">T</span>
<span class="subtitle">TECHNOLOGY</span>
</span>
<span class="letter" id="e">
<span class="big-letter">E</span>
<span class="subtitle">ENGINEERING</span>
</span>
<span class="letter" id="a">
<span class="big-letter">A</span>
<span class="subtitle">ARTS</span>
</span>
<span class="letter" id="m">
<span class="big-letter">M</span>
<span class="subtitle">MATHEMATICS</span>
</span>
</div><br>
<div id="login-container">
<div id="login-button" onclick="document.getElementById('login-button').style.display='none'; document.getElementById('login-welcome').style.display='inline-block'; document.getElementById('subscribe').style.display='block';">
<img src="images/fb-logo.png"/>
<span>Login with Facebook</span>
</div>
<div id="login-welcome">
Hello, Daniel
</div>
</div>
<div id="subscribe">
<span class="heading">Subscribe to email alerts</span><br>
<input type="email" placeholder="[email protected]"/>
<button id="subscribe-submit" onclick="document.getElementById('subscribe').style.display='none';">SUBSCRIBE</button><br>
<a href="javascript:void(0);" id="subscribe-cancel" onclick="document.getElementById('subscribe').style.display='none';">Not now</a>
<div id="subscribe-close" onclick="document.getElementById('subscribe').style.display='none';">
</div>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDM-5O9yoPDAgGBdtqDaI1KrP3u7HijuRY&callback=initMap" async defer></script>
</body>
</html>