-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
577 lines (501 loc) · 24.7 KB
/
index.html
File metadata and controls
577 lines (501 loc) · 24.7 KB
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
<!DOCTYPE html>
<!-- HTML5 Hello world by kirupa - http://www.kirupa.com/html5/getting_your_feet_wet_html5_pg1.htm -->
<html lang="en-us">
<head>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-106974617-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments) };
gtag('js', new Date());
gtag('config', 'UA-106974617-1');
</script>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700|Montserrat|Open+Sans|PT+Mono" rel="stylesheet">
<script src="https://use.fontawesome.com/a53f2d041c.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="assets/js/particles.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js" integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=" crossorigin="anonymous"></script>
<link href="//cdn-images.mailchimp.com/embedcode/horizontal-slim-10_7.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<link href="assets/css/style.css" rel="stylesheet">
<script src="assets/js/main.js"></script>
<title>SM Hacks II</title>
</head>
<body>
<div id="top"></div>
<div id="particles-js"></div>
<div id="toTopNav">
<div id="scrollToTop">
<a href="#top" class="toTopLink">
<div class="circle"></div><i aria-hidden="true" class="fa fa-chevron-up"></i>
</a>
</div>
</div>
<nav class="navbar navbar-expand-lg navbar-light bg-custom">
<a class="navbar-brand" href="#"><i>SM</i></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#schedule">Schedule</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#organizers">Organizers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#sponsors">Sponsors</a>
</li>
</ul>
</div>
</nav>
<div id="mainContent">
<section id="cover">
<div class="container-fluid">
<div class="row">
<img src="assets/img/logo.svg" id="logo"></img>
</div>
<div id="date">
<h1>NOVEMBER 17-18, 2018</h1>
<div id="venue">
<h2>GoPro Headquarters</h2>
</div>
<br>
<h2 id="thankyou">Thank you everyone who attended!</h2>
<h4><a id="devpost-link" href="https://smhacks2.devpost.com/" target="_blank">Click here to view submissions and winners!</a></h4>
</div>
</div>
</section>
<!-- Event ended, applications removed
<section id="apply">
<div class="container">
<div class="row">
<div class="col-12">
<h1>APPLY</h1>
</div>
</div>
<hr>
<div class="row">
<div class="col-12">
<h2>The application window for attendees has closed.</h2>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4">
<h2><a href="http://mentor.smhacks.com/" class="link" target="_blank">Mentor</a></h2>
</div>
<div class="col-xs-12 col-sm-4">
<h2><a href="http://volunteer.smhacks.com/" class="link" target="_blank">Volunteer</a></h2>
</div>
<div class="col-xs-12 col-sm-4">
<h2><a href="http://judge.smhacks.com/" class="link" target="_blank">Judge</a></h2>
</div>
</div>
</div>
</section>
-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-12">
<h1>ABOUT</h1>
</div>
</div>
<hr>
<div class="row">
<div class="col-12">
<h3>SM Hacks II is a hackathon that will gather the innovators of tomorrow into an amazing experience, organized by students of San Mateo High School.</h3>
</div>
</div>
</div>
</section>
<section id="schedule">
<div class="container">
<div class="row">
<div class="col-12">
<h1>SCHEDULE</h1>
</div>
</div>
<hr>
<div class="row tables">
<div class="col-12">
<h3>Saturday - November 17</h3>
<table class="table">
<tbody>
<tr>
<th>Time</th>
<th>Event</th>
</tr>
<tr>
<td>10:30 AM</td>
<td>Attendee Check-In</td>
</tr>
<tr>
<td>11:30 AM</td>
<td>Opening Ceremony</td>
</tr>
<tr>
<td>12:00 PM</td>
<td>Lunch; Hacking Begins!</td>
</tr>
<tr>
<td>12:30 PM</td>
<td>Team-Mixer</td>
</tr>
<tr>
<td>1:30 PM</td>
<td>Workshops Begin</td>
</tr>
<tr>
<td>6:30 PM</td>
<td>Dinner</td>
</tr>
<tr>
<td>9:00 PM</td>
<td>Cup Stacking!</td>
</tr>
</tbody>
</table>
<h3>Sunday - November 18</h3>
<table class="table">
<tbody>
<tr>
<th>Time</th>
<th>Event</th>
</tr>
<tr>
<td>12:00 AM</td>
<td>Midnight Snack</td>
</tr>
<tr>
<td>7:00 AM</td>
<td>Breakfast; Submissions on Devpost</td>
</tr>
<tr>
<td>8:00 AM</td>
<td>Hacking Ends</td>
</tr>
<tr>
<td>9:00 AM</td>
<td>Judging</td>
</tr>
<tr>
<td>11:00 AM</td>
<td>Closing Ceremony</td>
</tr>
<tr>
<td>12:00 PM</td>
<td>End of Hackathon</td>
</tr>
</tbody>
</table>
<p>*Subject to change.</p>
</div>
</div>
</div>
</section>
<section id="workshops">
<div class="container">
<div class="row">
<div class="col-12">
<h1>WORKSHOPS</h1>
</div>
</div>
<hr>
<div class="row tables">
<div class="col-12">
<h3>Saturday - November 17</h3>
<table class="table">
<tbody>
<tr>
<th>Time</th>
<th>Event</th>
</tr>
<tr>
<td>1:30 PM</td>
<td>Scaling with ReactJS</td>
</tr>
<tr>
<td>2:45 PM</td>
<td>Intro to Web Development</td>
</tr>
<tr>
<td>3:45 PM</td>
<td>Clean Code</td>
</tr>
<tr>
<td>4:30 PM</td>
<td>Tech Talk:<br>The Computer Science Industry</td>
</tr>
</tbody>
</table>
*Subject to change.
</div>
</div>
</div>
</section>
<section id="faq">
<div class="container">
<div class="row">
<div class="col-12">
<h1>FAQ</h1>
</div>
</div>
<hr>
<div class="row">
<div class="col-12 block">
<h3>What is a hackathon?</h3>
<p>A hackathon is a 24-hour programming marathon where your ideas come to life. Over the course of the weekend, students from all backgrounds and all skill levels collaborate in teams of up to four to build something awesome. All participants
must abide by the <a class="link" href="assets/pdf/mlh-code-of-conduct.pdf" target="_blank">MLH Code of Conduct</a>.</p>
</div>
</div>
<div class="row">
<div class="col-lg-6 block">
<h3>What if I don't know how to code?</h3>
<p>No worries! SM Hacks is the perfect time to learn how to code and all students, regardless of skill level and experience, are welcome. There will be plenty of mentors on hand glad to answer any and all questions and workshops specifically
designed for those with no prior experience. Stay tuned for more information about workshops!</p>
</div>
<div class="col-lg-6 block">
<h3>Do I have to be in high school?</h3>
<p>Yes, only current high school students will be able to attend. Unfortunately, we are not accepting middle school students. College students are welcome to help out as mentors!</p>
</div>
</div>
<div class="row">
<div class="col-lg-6 block">
<h3>What if I don't have a team or an idea?</h3>
<p>No worries! It is not uncommon for people to come into the hackathon without an already-formed group, but we'll make sure you're matched with the right people! We will have a team formation and ideation session the first night so everyone
can find the perfect team and come up with awesome ideas, so don't you worry first-time hackers!</p>
</div>
<div class="col-lg-6 block">
<h3>How big can teams be?</h3>
<p>Teams can be up to four people. While you may work as an individual, we highly encourage collaborating with others. If you don't have a team or need help finding one, make sure not to miss our team formation and ideation session on Saturday.</p>
</div>
</div>
<div class="row">
<div class="col-lg-6 block">
<h3>What should I bring?</h3>
<p>Attendees should bring a valid student ID or some other form of identification, as well as a signed and completed waiver. Bring laptops and chargers, along with any other technology that you may want to use! We will have designated sleeping
spots so feel free to bring a sleeping bag and pillow. Also it is highly suggested that you bring toiletries so you can feel refreshed and beautiful!</p>
</div>
<div class="col-lg-6 block">
<h3>How much does it cost to attend?</h3>
<p>Nothing! Just bring your beautiful self and ideas and we will provide you with the food, WiFi, workspace, and swag!</p>
</div>
</div>
<div class="row">
<div class="col-lg-6 block">
<h3>How can I apply?</h3>
<p>Sadly, the application window for attendees has closed. However, if you are over 18 and are interested in volunteering, mentoring or judging, please click <a href="#apply" class="link">click here</a> to apply!</p>
</div>
<div class="col-lg-6 block">
<h3>What is the schedule like?</h3>
<p>The event will be from November 17-18th, 2018. <a href="#schedule" class="link">Click here</a> to see a more specific schedule! </p>
</div>
</div>
<div class="row">
<div class="col-lg-6 block">
<h3>What if I have another question?</h3>
<p>Email us at <a class="link" href="mailto:team@smhacks.com">team@smhacks.com</a> if you have any additional questions. We are always happy to help!</p>
</div>
<div class="col-lg-6 block">
<h3>What if I want to sponsor?</h3>
<p>Email us at <a class="link" href="mailto:sponsors@smhacks.com">sponsors@smhacks.com</a>, we always are looking!</p>
</div>
</div>
</div>
</section>
<section id="organizers">
<div class="container">
<div class="row">
<div class="col-12">
<h1>ORGANIZERS</h1>
</div>
</div>
<hr>
<div id="allorgs">
<div class="row">
<div class="col-sm-6 col-lg-4">
<figure>
<img class="img-headshot" src="assets/img/headshots/jason_min_edit.jpg" />
<h3>Jason L.</h3>
<figcaption>Lead and Sponsorship Director</figcaption>
<div class="medias">
<a href="mailto:jason@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/jason-li-991692143/" class="social" target="_blank"><i aria-hidden="true" class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/jason.li.2001" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
<div class="col-sm-6 col-lg-4">
<figure>
<img class="img-headshot" src="assets/img/headshots/namrata_min_edit.jpg" />
<h3>Namrata I.</h3>
<figcaption>Operations Director</figcaption>
<div class="medias">
<a href="mailto:namrata@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/namrata-inamti-412b15143/" class="social" target="_blank"><i aria-hidden="true" class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/profile.php?id=100013313883118" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
<div class="col-sm-6 col-lg-4">
<figure>
<img class="img-headshot" src="assets/img/headshots/kelly_min_edit.jpg" />
<h3>Kelly M.</h3>
<figcaption>Outreach Director</figcaption>
<div class="medias">
<a href="mailto:kelly@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/kelly-ma-a07147142/" class="social" target="_blank"><i aria-hidden="true" class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/kelly.ma704" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
<div class="col-sm-6 col-lg-3">
<figure>
<img class="img-headshot" src="assets/img/headshots/alec_min_edit.jpg" />
<h3>Alec L.</h3>
<figcaption>Sponsorship Team</figcaption>
<div class="medias">
<a href="mailto:alec@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://www.facebook.com/alec.li.5243" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
<div class="col-sm-6 col-lg-3">
<figure>
<img class="img-headshot" src="assets/img/headshots/andy_min_edit.jpg" />
<h3>Andy F.</h3>
<figcaption>Operations Team</figcaption>
<div class="medias">
<a href="mailto:andy@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/andy-fang-722898142/" class="social" target="_blank"><i aria-hidden="true" class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/profile.php?id=100008617984515" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
<div class="col-sm-6 col-lg-3">
<figure>
<img class="img-headshot" src="assets/img/headshots/kristine_min_edit.jpg" />
<h3>Kristine K.</h3>
<figcaption>Operations Team</figcaption>
<div class="medias">
<a href="mailto:kristine@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/kristine-kwan-2bb93a167/" class="social" target="_blank"><i aria-hidden="true" class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/profile.php?id=100013108111588" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
<div class="col-sm-6 col-lg-3">
<figure>
<img class="img-headshot" src="assets/img/headshots/alex_min_edit.jpg" />
<h3>Alex N.</h3>
<figcaption>Operations Team</figcaption>
<div class="medias">
<a href="mailto:alex@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/alexander-novoselsky-584a52167/" class="social" target="_blank"><i aria-hidden="true" class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/alex.novoselsky.9" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
<div class="col-sm-6 col-lg-3 mx-auto">
<figure>
<img class="img-headshot" src="assets/img/headshots/bruce_min_edit.jpg" />
<h3>Bruce D.</h3>
<figcaption>Sponsorship Team</figcaption>
<div class="medias">
<a href="mailto:bruce@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/bruce-deng-934217143/" class="social" target="_blank"><i aria-hidden="true" class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/bruce.qdeng" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
<div class="col-sm-6 col-lg-3 mx-auto">
<figure>
<img class="img-headshot" src="assets/img/headshots/mahak_min_edit.jpg" />
<h3>Mahak B.</h3>
<figcaption>Outreach Team</figcaption>
<div class="medias">
<a href="mailto:mahak@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://linkedin.com/in/mahakbindal" class="social" target="_blank"><i aria-hidden="true" class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/mahakbindal07" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
<div class="col-sm-6 col-lg-3 mx-auto">
<figure>
<img class="img-headshot" src="assets/img/headshots/anu_min.jpg" />
<h3>Anu T.</h3>
<figcaption>Operations Team</figcaption>
<div class="medias">
<a href="mailto:anu@smhacks.com" class="social"><i aria-hidden="true" class="fa fa-envelope"></i></a>
<a href="https://www.linkedin.com/in/anuthiru" class="social" target="_blank"><i aria-hidden="true" class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/nitanu32" class="social" target="_blank"><i aria-hidden="true" class="fa fa-facebook-square"></i></a>
</div>
</figure>
</div>
</div>
</div>
</div>
</section>
<section id="sponsors">
<div class="container">
<div class="row">
<div class="col-12">
<h1>SPONSORS</h1>
</div>
</div>
<hr>
<div class="row prospectus">
<div class="col-12">
<h2><a href="assets/pdf/sponsorship.pdf" class="link" target="_blank">Check out our sponsorship prospectus!</a></h2>
</div>
</div>
<div class="row">
<div class="col-12"><a href="https://gopro.com/" target="_blank"><img src="assets/img/sponsors/gopro.png" class="sponsorLogo big"></img></a></div>
</div>
<div class="row">
<div class="col-xs-6 col-lg-4"><a href="https://www.zuora.com/" target="_blank"><img src="assets/img/sponsors/zuora.png" class="sponsorLogo zuora"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://balsamiq.com/" target="_blank"><img src="assets/img/sponsors/balsamiq.png" class="sponsorLogo balsamiq"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://discoverpraxis.com/" target="_blank"><img src="assets/img/sponsors/praxis.png" class="sponsorLogo praxis"></img></a></div>
</div>
<div class="row">
<div class="col-xs-6 col-lg-4"><a href="https://www.wolfram.com/language/" target="_blank"><img src="assets/img/sponsors/wolfram.png" class="sponsorLogo wolfram"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://get.tech/" target="_blank"><img src="assets/img/sponsors/dottech.png" class="sponsorLogo dottech"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://www.stickermule.com/supports/hackathons" target="_blank"><img src="assets/img/sponsors/stickermule.png" class="sponsorLogo stickermule"></img></a></div>
</div>
<div class="row">
<div class="col-xs-6 col-lg-4"><a href="https://quizlet.com/" target="_blank"><img src="assets/img/sponsors/quizlet.png" class="sponsorLogo quizlet"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://www.google.com/" target="_blank"><img src="assets/img/sponsors/google.png" class="sponsorLogo google"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://www.yelp.com/" target="_blank"><img src="assets/img/sponsors/yelp.png" class="sponsorLogo yelp"></img></a></div>
</div>
<div class="row">
<div class="col-xs-6 col-lg-4"><a href="https://firebase.google.com/" target="_blank"><img src="assets/img/sponsors/firebase.png" class="sponsorLogo firebase"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://www.cbsinteractive.com/" target="_blank"><img src="assets/img/sponsors/cbs.png" class="sponsorLogo cbs"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://www.linode.com/" target="_blank"><img src="assets/img/sponsors/linode.png" class="sponsorLogo linode"></img></a></div>
</div>
<div class="row">
<div class="col-xs-6 col-lg-4"><a href="https://roblox.com/" target="_blank"><img src="assets/img/sponsors/roblox.png" class="sponsorLogo roblox"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://essentiawater.com/" target="_blank"><img src="assets/img/sponsors/essentia.png" class="sponsorLogo essentia"></img></a></div>
<div class="col-xs-6 col-lg-4"><a href="https://artofproblemsolving.com/" target="_blank"><img src="assets/img/sponsors/aops.png" class="sponsorLogo aops"></img></a></div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p>Website designed by Jason Li<br>© SM Hacks 2017-2018</p>
</div>
</footer>
</div>
</body>
</html>