-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·867 lines (810 loc) · 31.9 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
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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-69494366-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-69494366-4');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>McHacks</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Facebook and Twitter integration -->
<meta property="og:title" content="McHacks V: Canada's Most Innovative Hackathon" />
<meta property="og:image" content="https://2018.mchacks.ca/images/cover.jpg" />
<meta property="og:url" content="https://2018.mchacks.ca" />
<meta property="og:site_name" content="McHacks" />
<meta property="og:description" content="Canada's most innovative hackathon, back for round 5! Join us Feb. 3rd and 4th for an awesome weekend of hacking!"
/>
<meta name="twitter:title" content="McHacks V: Canada's Most Innovative Hackathon" />
<meta name="twitter:image" content="https://2018.mchacks.ca/images/cover.jpg" />
<meta name="twitter:url" content="https://2018.mchacks.ca" />
<meta name="twitter:card" content="Canada's most innovative hackathon, back for round 5! Join us Feb. 3rd and 4th for an awesome weekend of hacking!"
/>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="imiages/favicon.png">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600,400italic,700' rel='stylesheet' type='text/css'>
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Simple Line Icons -->
<link rel="stylesheet" href="css/simple-line-icons.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Style for the CSS-->
<link rel="stylesheet" href="css/style.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<div class="mlh-trust-badge">
<a id="mlh-trust-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:auto;top:0;width:10%;z-index:10000"
href="https://mlh.io/seasons/na-2018/events?utm_source=na-2018&utm_medium=TrustBadge&utm_campaign=na-2018&utm_content=white"
target="_blank">
<img src="https://s3.amazonaws.com/logged-assets/trust-badge/2018/white.svg" alt="Major League Hacking 2017 Hackathon Season"
style="width:100%">
</a>
</div>
<body>
<header role="banner" id="fh5co-header">
<div class="container">
<!-- <div class="row"> -->
<nav class="navbar navbar-default">
<div class="navbar-header">
<!-- Mobile Toggle Menu Button -->
<a href="#" class="js-fh5co-nav-toggle fh5co-nav-toggle" data-toggle="collapse" data-target="#navbar" aria-expanded="false"
aria-controls="navbar">
<i></i>
</a>
<a class="navbar-brand" href="index.html"></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active">
<a href="#" data-nav-section="home">
<span>Home</span>
</a>
</li>
<li>
<a href="#" data-nav-section="faqs">
<span>FAQs</span>
</a>
</li>
<li>
<a href="#" data-nav-section="sponsors">
<span>Sponsors</span>
</a>
</li>
<li>
<a href="#" data-nav-section="contact">
<span>Contact</span>
</a>
</li>
</ul>
</div>
</nav>
<!-- </div> -->
</div>
</header>
<!-- <section id="fh5co-home" data-section="home" style="
background: url('images/hero.png') no-repeat center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;" data-stellar-background-ratio="0.6">
<div class="slant"></div>
</section>
<!--section id="fh5co-home" data-section="home" data-stellar-background-ratio="0.6">
<style scoped>
.triangle{
background: url('images/horizontalsplash.png') no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style-->
<!--section id="fh5co-home" data-section="home" style="
background: url('images/hero.png') no-repeat center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;" data-stellar-background-ratio="0.6"-->
<style>
.triangle {
background: url('images/hero.png') no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 768px) {
.triangle {
background: url('images/horizontalsplash.png') no-repeat;
}
}
</style>
<section class="triangle" id="fh5co-home" data-section="home" data-stellar-background-ratio="0.6">
<style>
.triangle {
background: url('images/hero.png') no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
@media screen and (max-width: 1061px) {
.triangle {
background: none;
}
.martlet {
width: 240px;
}
}
</style>
<div class="gradient"></div>
<div class="container">
<div class="text-wrap">
<div class="text-inner">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="scale">
<img class="martlet" src="images/McHacksVFeb.svg" srcset="images/McHacksVFeb.svg 1500w, images/McHacksVFeb.svg 1500w" alt="Image"
class="img-responsive" style="display: block;
margin: auto; padding-bottom: 30px;">
</div>
</div>
<!-- <div class="applyBtn">
<form action="https://registration.mchacks.ca">
<input class="btn btn-primary btn-xl" value="Review Your Application" width: "20em"; height: "1.5em" type="submit">
</form>
</div> -->
<!--div class="col-md-8 col-md-offset-2">
<h2 class="to-animate" style="margin: auto;">February 3-4th 2018</h2>
</div-->
</div>
</div>
</div>
</div>
<div class="slant"></div>
</section>
<!-- background-position: -25px -25px -->
<!--section id="fh5co-intro">
<div class="container">
<div class="row row-bottom-padded-lg">
<div class="fh5co-block to-animate" style="background-image: url(images/img_7.jpg);">
<div class="overlay-darker"></div>
<div class="overlay"></div>
<div class="fh5co-text">
<i class="fh5co-intro-icon icon-bulb"></i>
<h2>Plan</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<p><a href="#" class="btn btn-primary">Get In Touch</a></p>
</div>
</div>
<div class="fh5co-block to-animate" style="background-image: url(images/img_8.jpg);">
<div class="overlay-darker"></div>
<div class="overlay"></div>
<div class="fh5co-text">
<i class="fh5co-intro-icon icon-wrench"></i>
<h2>Applications</h2>
<p>Applications will be opening soon!</p>
<p><a href="#" class="btn btn-primary">Click Me</a></p>
</div>
</div>
<div class="fh5co-block to-animate" style="background-image: url(images/img_10.jpg);">
<div class="overlay-darker"></div>
<div class="overlay"></div>
<div class="fh5co-text">
<i class="fh5co-intro-icon icon-rocket"></i>
<h2>Sponsorship</h2>
<p>Help make McHacks 2018 amazing!.</p>
<p><a href="#" class="btn btn-primary">Why Us?</a></p>
</div>
</div>
</div>
<<div class="row watch-video text-center to-animate">
<span>Watch the video</span>
<a href="https://vimeo.com/channels/staffpicks/93951774" class="popup-vimeo btn-video"><i class="icon-play2"></i></a>
</div>>
</div>
</section-->
<!--div class="row row-bottom-padded-sm">
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/sponsors/generaldynamicsSysCA.png" class="fh5co-project-item image-popup to-animate">
<img src="images/work_1.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 1</h2>
<span>Branding</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_2.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_2.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 2</h2>
<span>Web</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_3.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_3.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 3</h2>
<span>Web</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_4.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_4.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 4</h2>
<span>UI/UX</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_5.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_5.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 1</h2>
<span>Photography</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_6.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_6.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 2</h2>
<span>Illustration</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_7.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_7.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 3</h2>
<span>Web</span>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_8.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_8.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 4</h2>
<span>Sketch</span>
</div>
</a>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-4 col-sm-6 col-xxs-12">
<a href="images/work_1.jpg" class="fh5co-project-item image-popup to-animate">
<img src="images/work_1.jpg" alt="Image" class="img-responsive">
<div class="fh5co-text">
<h2>Project 2</h2>
<span>Illustration</span>
</div>
</a>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center to-animate">
<p>* Demo images from <a href="http://plmd.me/" target="_blank">plmd.me</a></p>
</div>
</div>
</div>
</section-->
<!--section id="fh5co-testimonials" data-section="testimonials">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">Testimonials</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
<h3>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.”</p>
</blockquote>
<div class="author to-animate">
<figure><img src="images/person1.jpg" alt="Person"></figure>
<p>
Jean Doe, CEO <a href="http://freehtml5.co/" target="_blank">FREEHTML5.co</a> <span class="subtext">Creative Director</span>
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.”</p>
</blockquote>
<div class="author to-animate">
<figure><img src="images/person2.jpg" alt="Person"></figure>
<p>
John Doe, Senior UI <a href="http://freehtml5.co/" target="_blank">FREEHTML5.co</a> <span class="subtext">Creative Director</span>
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="box-testimony">
<blockquote class="to-animate-2">
<p>“Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. ”</p>
</blockquote>
<div class="author to-animate">
<figure><img src="images/person3.jpg" alt="Person"></figure>
<p>
Chris Nash, Director <a href="http://freehtml5.co/" target="_blank">FREEHTML5.co</a> <span class="subtext">Creative Director</span>
</p>
</div>
</div>
</div>
</div>
</div>
</section-->
<!-- <section id="fh5co-services" data-section="applications">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-left">
<h2 class=" left-border to-animate">Applications</h2>
<div class="row">
<div class="col-md-8 subtext to-animate">
<h3>Applications are now open for McHacks 2018!</h3>
<div class="applyBtn">
<form action="https://registration.mchacks.ca">
<input class="btn btn-primary btn-xl" value="Apply Now" width: "20em"; height: "2em" type="submit">
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section id="fh5co-about" data-section="faqs">
<div class="fh5co-overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">FAQs</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
</div>
</div>
</div>
</div>
<div class="faqs">
<div class="three-flex-parent to-animate">
<div class="three-flex-child">
<h3>Who can participate?</h3>
<p>All undergraduate and high school students are welcome! If you are under 18, we’ll need a parental consent form.</p>
</div>
<div class="three-flex-child">
<h3>What should I bring?</h3>
<p>Your student ID, laptop, phone, chargers, some sleeping equipment like pillows and sleeping bags (we’ll be providing air mattresses).</p>
</div>
<div class="three-flex-child">
<h3>When should I arrive?</h3>
<p>Registration will take place at the SSMU building (University Centre, 3480 McTavish St, Montreal, QC H3A 0E7). Out-of-town check-in begins at 9:00 am, and local check-in begins at 9:30 am.</p>
</div>
</div>
<div class="three-flex-parent to-animate">
<div class="three-flex-child">
<h3>How do I get to McHacks?</h3>
<p>We’ll be sending buses to Toronto, Waterloo, and Boston. You can take the Via Rail to Montreal Central Station, a short walk from McGill campus. You can also take the Montreal metro to Peel station, our closest stop.</p>
</div>
<div class="three-flex-child">
<h3>Are travel reimbursements provided?</h3>
<p>We are unable to provide travel reimbursements for McHacks this year. No exceptions will be granted.</p>
</div>
<div class="three-flex-child">
<h3>Is there a standby line on the day of the event?</h3>
<p>If we have extra spots available, we will post on our Facebook page in the late morning (around 10:30-11AM). While we wish we could have each and every applicant at McHacks, we were unfortunately unable to book Hilbert’s Infinite Hotel this year.</p>
</div>
</div>
<div class="three-flex-parent to-animate">
<div class="three-flex-child">
<h3>I don’t have a team. Can I still participate?</h3>
<p>Of course, it’s not necessary to have a team prior to McHacks! We’ll have a fun team-forming session where you can find an awesome group of people to work with. Teams are welcome to have up to four people.</p>
</div>
<div class="three-flex-child">
<h3>How much is this going to cost me?</h3>
<p>McHacks is completely free! We’ll be providing food, drink, wi-fi, and lots of awesome swag. :)</p>
</div>
<div class="three-flex-child">
<h3>Can I keep working on a past project?</h3>
<p>No, participants should not be working on their projects before McHacks nor be developing pre-existing projects during the hackathon.</p>
</div>
</div>
<div class="three-flex-parent to-animate">
<div class="three-flex-child">
<h3>Is parking available?</h3>
<p>Parking is available at the McIntyre Garage (3655 Promenade Sir-William-Osler, Montreal, QC H3G 0B1). Rates are a max of $10.00 between 6:00 am and midnight on weekends.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 section-heading text-center" style="padding-bottom: 0px;">
<h3 class="to-animate">What if my question isn’t answered here? Contact us fb: <a href="https://www.facebook.com/mcgillhacks/"> McHacks on Facebook</a> </h3>
</div>
</div>
</div>
<!--div class="row">
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-anchor"></i>
<h3>Is there travel reibursement?</h3>
<p>There will be no travel reibursements provided</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-layers2"></i>
<h3>I'm attending and I do not live in Montreal, when do I arrive?</h3>
<p>Check-in is in room 108 at 9:00 AM at the University Center (SSMU) 3480 McTavish Street, Montreal H3A 1X9</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-anchor"></i>
<h3>I'm attending and I live in Montreal, when do I arrive?</h3>
<p>Check-in is in room 108 at 10:00 AM at the University Center (SSMU) 3480 McTavish Street, Montreal H3A 1X9</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-layers2"></i>
<h3>What is the closest metro station?</h3>
<p>McGill Station</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-anchor"></i>
<h3>Who's invited?</h3>
<p>If you're a university student, from any country, you're welcome! If you're in high school, you're extra welcome. Bring
Student ID and mittens!</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-layers2"></i>
<h3>What do I have to pay for?</h3>
<p>Admission is free and that includes food and drink for the duration of the hackathon.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-video2"></i>
<h3>How big should teams be?</h3>
<p>Teams are capped at 4 people. Don't worry if you don't have a team, we'll help you find people to hack with on spot.
It's also ok to do it alone, but it probably won't be as fun.</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-monitor"></i>
<h3>What's the format?</h3>
<p>Anything goes! Web, desktop, mobile, and hardware projects are all welcome. (All hacks should be computer-related, though.)
Projects will be judged based on creativity, technical difficulty, polish, and usefulness.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-monitor"></i>
<h3>Can I keep working on a past project?</h3>
<p>No, start fresh. If you do decide to skirt this rule, let us know so we can judge your work fairly. Using third-party
APIs and libraries is definitely okay, as long as they're accessible by everyone else as well.
</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-monitor"></i>
<h3>What if I'm a noob hacker?</h3>
<p>This is a great opportunity for you to learn how to hack! We'll have lots of evangelists walking around and a ton of
mentors, all willing to help. Please note that we'll only consider reimbursing travel if you submit a hack.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-monitor"></i>
<h3>What should I bring?</h3>
<p>Bring whatever you hack with, a student ID , mittens, deodorant (please), and an idea!</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-monitor"></i>
<h3>What is acceptable behaviour at a hackathon?</h3>
<p>Make sure you read up on our
<b>
<a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">code of conduct</a>
</b>. This defines what we expect from all hackers, sponsors, voluteers and attendees at McHacks V.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-monitor"></i>
<h3>Is there a place in the venue to sleep?</h3>
<p>There will be a room with mattresses in it for hackers to sleep in</p>
</div>
<div class="col-md-6 col-sm-6 fh5co-service to-animate">
<i class="icon to-animate-2 icon-monitor"></i>
<h3>My question isn't answered here.</h3>
<p>Hit us up via
<a href="mailto:[email protected]">email</a> or
<a href="http://facebook.com/mcgillhacks">Facebook</a>.</p>
</div-->
</div>
</div>
</section>
<section id="fh5co-counters" data-section="sponsors" style="background-color: #F9F9F9;" data-stellar-background-ratio="0.5">
<div class="container">
<div class="col-md-12 section-heading text-center to-animate">
<h2>Our Partners</h2>
<div class="sponsor to-animate">
<div class="silver">
<a href="https://www.amazon.jobs/en/business_categories/university-recruiting" target="_blank">
<img src="images/sponsors/amazon.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="silver">
<a href="https://www.cisco.com/c/en_ca/solutions/collaboration/ciscospark.html?dtid=pdidgd000366&ccid=cc000149" target="_blank">
<img src="images/sponsors/ciscospark.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="silver">
<a href="http://www.cppib.com/en/" target="_blank">
<img src="images/sponsors/CPPIB.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="silver">
<a href="https://careers.deloitte.ca" target="_blank">
<img src="images/sponsors/deloitte.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="silver">
<a href="https://telus.com/campus" target="_blank">
<img src="images/sponsors/telus.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="silver">
<a href="https://http://thinkingcapital.ca" target="_blank">
<img src="images/sponsors/thinkingcapital.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="silver">
<a href="https://www.nuance.com" target="_blank">
<img src="images/sponsors/nuance.png" alt="Image" class="img-responsive">
</a>
</div>
</div>
<div class="sponsor to-animate">
<div class="bronze">
<a href="https://balsamiq.com" target="_blank">
<img src="images/sponsors/balsamiq.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="bronze">
<a href="http://www.dneg.com" target="_blank">
<img src="images/sponsors/dneg.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="bronze">
<a href="https://developers.google.com" target="_blank">
<img src="images/sponsors/google.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="bronze">
<a href="https://www.gorillagroup.com/" target="_blank">
<img src="images/sponsors/gorilla.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="bronze">
<a href="https://www.loyalty.com" target="_blank">
<img src="images/sponsors/loyalty.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="bronze">
<a href="https://www.mcgill.ca/gps/" target="_blank">
<img src="images/sponsors/gps.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="bronze">
<a href="http://ausmcgill.com/" target="_blank">
<img src="images/sponsors/aus.png" alt="Image" class="img-responsive">
</a>
</div>
</div>
<div class="sponsor to-animate">
<div class="startup">
<a href="https://www.ea.com/careers" target="_blank">
<img src="images/sponsors/ea.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="https://indico.io" target="_blank">
<img src="images/sponsors/indico.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="http://jetbrains.com" target="_blank">
<img src="images/sponsors/jetbrains.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="https://www.launchacademy.ca" target="_blank">
<img src="images/sponsors/launch-academy.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="https://www.lighthouselabs.ca" target="_blank">
<img src="images/sponsors/lighthouselabs.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="https://www.facebook.com/pg/MiltonBcafeteriaurbaine" target="_blank">
<img src="images/sponsors/miltonb.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="http://www.choosemuse.com" target="_blank">
<img src="images/sponsors/muse.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="http://nextcanada.com" target="_blank">
<img src="images/sponsors/next.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="https://sketchapp.com" target="_blank">
<img src="images/sponsors/sketch.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="https://www.stickermule.com/ca" target="_blank">
<img src="images/sponsors/stickermule.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="http://get.tech" target="_blank">
<img src="images/sponsors/dottech.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="http://toromatcha.com" target="_blank">
<img src="images/sponsors/toro.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="https://www.twilio.com" target="_blank">
<img src="images/sponsors/twilio.png" alt="Image" class="img-responsive">
</a>
</div>
<div class="startup">
<a href="https://1password.com" target="_blank">
<img src="images/sponsors/1password.png" alt="Image" class="img-responsive">
</a>
</div>
</div>
<br>
<h4>Don't see your company up there? We can fix that, email
<a href="mailto:[email protected]">[email protected]</a>
</h4>
</div>
</div>
</section>
<section id="fh5co-contact" data-section="contact">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center" style="padding-bottom: 0px;">
<h2 class="to-animate">Get In Touch</h2>
</div>
</div>
<div class="row row-bottom-padded-md">
<div class="three-flex-parent to-animate">
<div class="three-flex-child">
<i class="icon-envelope"></i>
<a href="mailto:[email protected]"> [email protected]</a>
</div>
<div class="three-flex-child">
<i class="icon-facebook"></i>
<a href="https://www.facebook.com/mcgillhacks/"> McHacks on Facebook</a>
</div>
<div class="three-flex-child">
<i class="icon-twitter"></i>
<a href="http://twitter.com/McGillHacks"> McHacks on Twitter</a>
</div>
</div>
<div class="col-md-12 section-heading text-center to-animate" style="padding-bottom: 0px; margin-bottom: 0px; margin-top: 20px;">
<a href="https://goo.gl/maps/5DiHVgbYHvS2">
<h3>HackMcGill, 3480 rue McTavish, Montreal, QC, H3A 0E7, Canada</h3>
</a>
</div>
</div>
</div>
<div id="map" class="to-animate"></div>
</section>
<footer id="footer" role="contentinfo">
<a href="#" class="gotop js-gotop">
<i class="icon-arrow-up2"></i>
</a>
<br>
<br>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<ul class="social social-circle">
<li>
<a href="http://twitter.com/McGillHacks">
<i class="icon-twitter"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/mcgillhacks/">
<i class="icon-facebook"></i>
</a>
</li>
<li>
<a href="mailto:[email protected]">
<i class="icon-envelope"></i>
</a>
</li>
</ul>
<p>
<a href="https://2017.mchacks.ca">
McHacks 2017
</a>
|
<a href="https://mchacks.ca">
McHacks 2019
</a>
</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- jQuery Easing -->
<script src="js/jquery.easing.1.3.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Waypoints -->
<script src="js/jquery.waypoints.min.js"></script>
<!-- Stellar Parallax -->
<script src="js/jquery.stellar.min.js"></script>
<!-- Counter -->
<script src="js/jquery.countTo.js"></script>
<!-- Magnific Popup -->
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/magnific-popup-options.js"></script>
<!-- Google Map -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCefOgb1ZWqYtj7raVSmN4PL2WkTrc-KyA&sensor=false"></script>
<script src="js/google_map.js"></script>
<!-- Main JS (Do not remove) -->
<script src="js/main.js"></script>
</body>
</html>