-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
223 lines (219 loc) · 14.1 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Home - shsHacks 2023</title>
<link rel="icon" type="image/png" sizes="768x768" href="assets/img/Social%20Media%20Icon.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Serif+Pro">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/fonts/simple-line-icons.min.css">
<link href = "Social Media Icon.png" rel = "icon">
</head>
<body id="page-top"><a class="menu-toggle rounded" href="#"><i class="fa fa-bars"></i></a>
<nav class="navbar navbar-light navbar-expand" id="sidebar-wrapper" style="background-color: #275d38;">
<div class="container"><button data-toggle="collapse" class="navbar-toggler d-none" data-target="#"></button>
<div class="collapse navbar-collapse">
<ul class="navbar-nav sidebar-nav" id="sidebar-nav">
<li class="nav-item sidebar-brand"><a class="nav-link active js-scroll-trigger" href="#page-top">shsHacks 2023</a></li>
<li class="nav-item sidebar-nav-item"><a class="nav-link js-scroll-trigger" href="#page-top">Home</a></li>
<li class="nav-item sidebar-nav-item"><a class="nav-link js-scroll-trigger" href="#about">About</a></li>
<li class="nav-item sidebar-nav-item"><a class="nav-link js-scroll-trigger" href="#contact1">Contact</a></li>
</ul>
</div>
</div>
</nav>
<header class="masthead" style="background-color: #155e27;">
<div class="container my-auto text-center shadow" style="background-color: #c99702; border-radius: 25px;">
<h1 class="text-monospace mb-1" style="color: #fff;">SHSHacks 2023 Submission Deadline</h1>
<div class="container">
<div id="timer" style="font-size: 2vw; color: white; font-weight: bold; height: 6vw;">
<span id="days" style="font-size: 4vw">0</span> days
<span id="hours" style="font-size: 4vw">0</span> hours
<span id="minutes" style="font-size: 4vw">0</span> minutes
<span id="seconds" style="font-size: 4vw">0</span> seconds
</div>
<script>
// Set the date we're counting down to
const timerDisplay = {
days: document.querySelector("#days"),
hours: document.querySelector("#hours"),
minutes: document.querySelector("#minutes"),
seconds: document.querySelector("#seconds")
};
const endDate = new Date("03/05/2023 10:00:00 CST");
const now = new Date();
const totalSeconds = (endDate - now) / 1000;
const countDown = setInterval(function() {
const secondsLeft = totalSeconds - (new Date() - now) / 1000;
if (secondsLeft <= 0) {
clearInterval(countDown);
timerDisplay.days.textContent = 0;
timerDisplay.hours.textContent = 0;
timerDisplay.minutes.textContent = 0;
timerDisplay.seconds.textContent = 0;
} else {
timerDisplay.days.textContent = Math.floor(secondsLeft / 86400);
timerDisplay.hours.textContent = Math.floor((secondsLeft % 86400) / 3600);
timerDisplay.minutes.textContent = Math.floor(((secondsLeft % 86400) % 3600) / 60);
timerDisplay.seconds.textContent = Math.floor(((secondsLeft % 86400) % 3600) % 60);
}
}, 1000);
</script>
</div>
<div class="overlay"></div>
</div>
<p id="demo"></p>
</header>
<section id="about" class="content-section bg-light">
<h1 class="text-center" style="height: 5vw; max-height: 5vw; min-height: 5vw;"><span style="text-decoration: underline;">About Us</span></h1>
<div class="container text-center" style="padding: 20px;">
<div class="row" style="height: 1vw;">
<div class="col-lg-10 mx-auto" style="font-size:1vw; padding: 6px;">
<p class="text-monospace">SHSHacks is a collaborative, 24-hour coding marathon that will take place <strong>Spring 2023</strong> at Adlai E. Stevenson High School, IL. SHSHacks is for all students who want to invent, design, and bring their ideas into reality. </p>
<p class="text-monospace">Never coded before? Want experience with hands-on project development? Wondering about food? We’ve got you covered at SHSHacks! From workshops to working on projects, there’s something for you at SHSHacks whether you’re intrigued beginner or a seasoned developer.</p>
<p class="text-monospace">SHSHacks is student-run, student-organized, and completely <strong>free</strong> for all participants.</p>
</div>
</div>
</div>
</section>
<section id="services" class="content-section bg-light text-white text-center">
<div class="container">
<div class="content-section-heading shadow" style="background-color: #155e27; border-radius: 25px;">
<h2 class="mb-5" style="font-size: 5vw"><span style="color: #fff;">Schedule</span><br><span style="font-size:2vw; color: #fff;">All events will take place in the ILC unless stated otherwise</span></h2>
</div>
<table style="font-size: 2vw; text-align: center; width: 100%;">
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%; text-decoration: underline; font-weight: bold;">11:30</td>
<td colspan="2" style="width: 80%; text-align: center;">Check-In begins @ The Point</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">12:00</td>
<td colspan="2" style="width: 80%; text-align: center;">Opening Ceremony @ QLC</td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">13:00</td>
<td colspan="2" style="width: 80%; text-align: center;"></td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">14:00</td>
<td rowspan="2" style="width: 40%; text-align: center;">ISACA Booth</td>
<td style="width: 40%; text-align: center;">Merch Handout</td>
</tr>
<tr style="background-color: #155e27; color: #fff;">
<td style="width: 20%;">15:00</td>
<td style="width: 40%; text-align: center;">HTML WS</td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">16:00</td>
<td colspan="2" style="width: 80%; text-align: center;">Javascript WS</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">17:00</td>
<td style="width: 40%; text-align: center;">Code2Connect WS</td>
<td style="width: 40%; text-align: center;">Cloud Infrastructure WS</td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">18:00</td>
<td colspan="2" style="width: 80%; text-align: center;">Alumni Panel</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">19:00</td>
<td colspan="2" style="width: 80%; text-align: center;">Dinner + Merch Handout #2</td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">20:00</td>
<td colspan="2" style="width: 80%; text-align: center;">HTML WS</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">21:00</td>
<td colspan="2" style="width: 80%; text-align: center;">MS Paint art competition :3</td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">22:00</td>
<td colspan="2" style="width: 80%; text-align: center;">ALGO COMPETITION 🔥🔥🔥</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">23:00</td>
<td colspan="2" style="width: 80%; text-align: center;">Brawlhalla Tournament</td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">00:00</td>
<td colspan="2" style="width: 80%; text-align: center;">TYPERACER TOURNAMENT 🏁🏁🏁</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">01:00</td>
<td colspan="2" rowspan = "2" style="width: 80%; text-align: center;">The Social Network</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">02:00</td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">03:00</td>
<td colspan="2" style="width: 80%; text-align: center;">Chill idk</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">04:00</td>
<td colspan="2" rowspan="4" style="width: 80%; text-align: center;">Go to Bed (or not)</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">05:00</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">06:00</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">07:00</td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">08:00</td>
<td colspan="2" style="width: 80%; text-align: center;">Breakfast!!</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">09:00</td>
<td colspan="2" style="width: 80%; text-align: center;"></td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">10:00</td>
<td colspan="2" style="width: 80%; text-align: center;">SUBMISSION OPENS!!</td>
</tr>
<tr style="background-color: #155e27; color: #ffffff;">
<td style="width: 20%;">11:00</td>
<td colspan="2" style="width: 80%; text-align: center;">CHESS TOURBAMENT (real)</td>
</tr>
<tr style="background-color: #ffffff; color: #155e27;">
<td style="width: 20%;">12:00</td>
<td colspan="2" style="width: 80%; text-align: center;">Closing Ceremony 😢😢👋👋 @ QLC</td>
</tr>
</table>
</div>
</section>
<section class="content-section text-white" style="background-color:#c99702;">
<div class="container text-center">
<h2 class="mb-4"><span style="text-decoration: underline;">SPONSORS!!</span></h2>
<img src="assets\img\hackclublogo.png" alt="HTML5 Icon" style="height:128px; padding: 10px;">
<img src="assets\img\HRTlogo.png" alt="HTML5 Icon" style="height:128px; padding: 10px;">
<img src="assets\img\codeninjas.png" alt="HTML5 Icon" style="height:128px; padding: 10px;">
<img src="assets\img\culvers.png" alt="HTML5 Icon" style="height:128px; padding: 10px;">
<img src="assets\img\bab.png" alt="HTML5 Icon" style="height:128px; padding: 10px;">
<img src="assets\img\ctc.png" alt="HTML5 Icon" style="height:128px; padding: 10px;">
<img src="assets\img\ISACA.jpeg" alt="HTML5 Icon" style="height:128px; padding: 10px;">
</div>
</section>
<footer class="footer text-center" style="background-color:#275d38;">
<div class="container">
<ul class="list-inline mb-5">
<li class="list-inline-item"> <a class="text-white social-link rounded-circle" href="mailto:[email protected]"><i class="icon-envelope"></i></a></li>
<li class="list-inline-item"> <a class="text-white social-link rounded-circle" href="https://www.instagram.com/shshacks2023/"><i class="icon-social-instagram"></i></a></li>
</ul>
<p class="mb-0 small" style="color: beige;">Copyright © shsHacks 2023</p>
</div><a class="js-scroll-trigger scroll-to-top rounded" href="#page-top"><i class="fa fa-angle-up"></i></a>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<script src="assets/js/stylish-portfolio.js"></script>
</body>
</html>