-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
109 lines (89 loc) · 3.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico">
<title>Monthly Music Hackathon NYC</title>
<!-- Third Party CSS -->
<link rel="stylesheet" href="vendor/bootstrap.min.css">
<link rel="stylesheet" href="custom.css">
<!-- Third Party JavaScript -->
<script src="vendor/jquery.js"></script>
<script src="vendor/typed.js"></script>
<script src="vendor/typing.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="vendor/jquery.easing.min.js"></script>
<script src="vendor/scrolling-nav.js"></script>
<script src="index.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#home"><img src="img/whitelogo.png"></a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#about">About</a></li>
<li><a href="#events">Upcoming</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#follow">Follow</a></li>
<li><a href="http://monthlymusichackathonnyc.eventbrite.com">RSVP</a></li>
</ul>
</div>
</div>
</nav>
<video autoplay loop id="video-background" muted>
<source src="img/glockenspiel_grinder_brenden_hussey.mp4" type="video/mp4">
</video>
<div id="overlay">
</div>
<section id="home">
<p>
At Monthly Music NYC
<span class="test" style="color:red;"></span>
hack together projects exploring music.
</p>
</section>
<section id="about">
<img src="img/mmh_logo_blue_big_transparent.png" width="240" height="240" />
<h3>About</h3>
<hr/>
At Monthly Music Hackathon NYC, musicians, programmers, artists, scientists, composers, hardware tinkerers, and others spend the last Saturday of each month hacking together projects exploring music. At 8pm we have a concert and presentations of the art, technology, and research developed that day. It's open to everyone. Please come participate or observe.
</section>
<section id="events">
<h3>2016 Events</h3>
<hr/>
<div class="events row">
</section>
<section id="faq">
<h3>Frequently Asked Questions</h3>
<hr/>
<div class="questions row">
</section>
<section id="follow">
<h3>Follow us</h3>
<hr/>
<a href="https://www.facebook.com/musichackathon" class="socicon-facebook">Facebook</a>
<a href="https://twitter.com/musichackathon" class="socicon-twitter">Twitter</a>
<a href="https://www.instagram.com/musichackathon" class="socicon-instagram">Instagram</a>
</section>
<!--<script type='text/javascript' src='https://musichackathon.tumblr.com/js'></script>-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-82457550-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>