-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtimeline.html
167 lines (162 loc) · 5.09 KB
/
timeline.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
<html>
<head>
<!-- useful meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=.5,minimum-scale=.5,maximum-scale=1,user-scalable=no">
<meta name="description" content="An event hosted by MHSSCE to promote the programming culture">
<meta name="keywords" content="hackathon">
<!-- title -->
<title>ERR_404 | Hackathon</title>
<!-- favicon -->
<link rel="icon" type="image/png" href="assets/favicon.png">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Materialize CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.min.css">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
<!-- Font Awesome -->
<link crossorigin="anonymous" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"
integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" rel="stylesheet">
<!--Custom Stylesheets-->
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="css/timeline.css">
</head>
<body class="background glove">
<!-- Nav bar section -->
<!-- Nav bar section -->
<div class="navbar--container navbar--icon sticky" id="nav--sticky">
<div class="navbar--title">
<h4>err_404 3.0</h4>
<img src="assets/favicon.png" alt="" style="width: 20px; height: 20px;">
</div>
<div class="nb-icon" style="padding-top: 10px;">
<i class="fa fa-bars"></i>
</div>
</div>
<div class="nav--open close sticky" style="margin-top: -22px;">
<div class="nav--open-icon">
<i class="fa fa-times"></i>
</div>
<div class="nav--open-title">explore</div>
<div class="nav--open-menu">
<a href="index.html">home</a>
<a href="hackathons.html">hackathons</a>
<a href="sponsors.html">past sponsors</a>
<a href="index.html#rules-section">rules</a>
<a href="index.html#guidelines-section">guidelines</a>
<a href="index.html#faq-section">FAQs</a>
</div>
</div>
<!--EVENTS-->
<div class="grey darken-4">
<h3 class="center light-heading">Schedule</h3>
<section class="timeline grey-text text-lighten-5">
<ul>
<li>
<div class="time-font">
<time>Sat 9:00 AM</time>
<p class="light-para">Registration Begins</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sat 10:00 AM</time>
<p class="light-para">Opening Ceremony</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sat 11:00 AM</time>
<p class="light-para">Hacking Starts</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sat 1:00 PM</time>
<p class="light-para">Lunch</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sat 4:00 PM</time>
<p class="light-para">Fun Event</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sat 5:00 PM</time>
<p class="light-para">Snack Break</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sat 9:00 PM</time>
<p class="light-para">Dinner</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sun 1:00 AM</time>
<p class="light-para">Fun Event</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sun 8:00 AM</time>
<p class="light-para">Breakfast</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sun 10:00 AM</time>
<p class="light-para">Evaluation Begins</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sun 11:00 AM</time>
<p class="light-para">Hacking Ends</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sun 12:30 PM</time>
<p class="light-para">Lunch</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sun 1:30 PM</time>
<p class="light-para">Announcement of Shortlisted Teams</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sun 2:00 PM</time>
<p class="light-para">Final Presentation by Shortlisted Teams</p>
</div>
</li>
<li>
<div class="time-font">
<time>Sun 3:00 PM</time>
<p class="light-para">Prize Distribution</p>
</div>
</li>
</ul>
</section>
</div>
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<!-- Materialize JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/js/materialize.min.js"></script>
<!-- Navbar Js -->
<script src="js/navbar.js"></script>
<!--Custom JS-->
<script src="js/timeline_script.js"></script>
</body>
</html>