forked from mding5692/mding5692.github.io-retired
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (123 loc) · 5.2 KB
/
index.html
File metadata and controls
132 lines (123 loc) · 5.2 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/css/materialize.min.css">
<link href='http://fonts.googleapis.com/css?family=Josefin+Slab' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="./css/main.css">
<script src="./js/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<div class="navbar-fixed z-depth-2">
<nav>
<div class="navbar-wrapper">
<a href="#" class="brand-logo">Hack Western</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="#about">About Us</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#like_us">Subscribe</a></li>
</ul>
</div>
</nav>
</div>
<div class="container landing z-depth-2">
<div class="col 16 s12">
<h2> Hack Western </h2>
<p> Sample description here </p>
</div>
</div>
<section id="about">
<div class="container landing nav-link-purple z-depth-2">
<div class="col 16 s12">
<h2> About Us </h2>
<p> Sample description here </p>
</div>
</div>
</section>
<section id="sponsors">
<div class="container nav-link-orange z-depth-2">
<div class="col 16 s12">
<h2> Sponsors </h2>
<div class="row">
<div class="col s6">Sponsor 2</div>
<div class="col s6">Sponsor 3</div>
</div>
<div class="row">
<div class="col s6">Sponsor 2</div>
<div class="col s6">Sponsor 3</div>
</div>
</div>
</div>
</section>
<section id="faq">
<div class="container nav-link-purple z-depth-2">
<div class="col 16 s12">
<h2> FAQ </h2>
<div class="card-panel orange">
Random question
</div>
<div class="card-panel purple">
Sample question
</div>
<div class="card-panel orange">
Random question
</div>
</div>
</div>
</section>
<section id="like_us">
<div class="container nav-link-orange z-depth-2">
<div class="col 16 s12">
<h2> Like Us?</h2>
<p> Subscribe now!</p>
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s12">
<input id="email" type="email" class="validate">
<label for="email" data-error="wrong" data-success="right">Email</label>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<footer class="page-footer z-depth-2">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Quotes</h5>
<p class="grey-text text-lighten-4">Random Quotes here</p>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2015 Some love from HackWestern
<a class="grey-text text-lighten-4 right" href="#!">More Links</a>
</div>
</div>
</footer>
<script src="./js/jquery-1.11.2.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/js/materialize.min.js"></script>
<script src="./js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html>