-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschedule.html
More file actions
120 lines (118 loc) · 5.11 KB
/
schedule.html
File metadata and controls
120 lines (118 loc) · 5.11 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
<!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.0">
<title>quhacks</title>
<link rel="icon" type="image/png" href="media/favicon.png">
<link rel="stylesheet" media="screen and (min-width: 1080px)" href="css/desktop.css">
<link rel="stylesheet" media="screen and (max-width: 1080px)" href="css/mobile.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="sponsors.html">Sponsors</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="">Register</a></li>
</ul>
<img src="media/freddy.png">
</nav>
<h1>Schedule</h1>
<table class="table">
<thead class="thead-dark">
<tr>
<th class="table_heading" scope="col">Time</th>
<th class="table_heading" scope="col">Room</th>
<th class="table_heading" scope="col">Session</th>
<th class="table_heading" scope="col">Information</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">8:30-9:30AM</th>
<td>TBD</td>
<td>Setup</td>
<td>All volunteers are expected to arrive at this time to help set up.</td>
</tr>
<tr>
<th scope="row">9:30-10:00AM</th>
<td>Skylight Room</td>
<td>Registration, Networking Session, Breakfast</td>
<td>Please fill out the following photo release <a href="https://drive.google.com/file/d/1WaWQlvaMoKawVXTUlsPOBl4YH-xVl5K-/view?usp=sharing">form</a>.</td>
</tr>
<tr>
<th scope="row">10:00-10:30AM</th>
<td>TBD</td>
<td>Opening Ceremony</td>
<td>A quick little opening from our sponsors. We'll lay out the schedule of the day, the prizes, our beautiful sponsors, and all that good stuff.</td>
</tr>
<tr>
<th scope="row">10:30-11:30AM</th>
<td>TBD</td>
<td>Coding/Introduction to Computer Science Workshop</td>
<td>Competition participants will begin coding while coding beginners will go to the general computer science workshop. Our workshop leaders will be giving you a rundown on why computer science is the way to go!</td>
</tr>
<tr>
<th scope="row">11:30-1:00PM</th>
<td>TBD</td>
<td>Workshop Rotation</td>
<td>Your options are: Intro to Java, App Development (Android/iOS), or Web Development</td>
</tr>
<tr>
<th scope="row">1:00-2:00PM</th>
<td>TBD</td>
<td>Lunch and Speaker</td>
<td>Pizza, salads, snacks; Speaker TBD</td>
</tr>
<tr>
<th scope="row">2:00-3:30PM</th>
<td>TBD</td>
<td>Workshop Rotation</td>
<td>Your options are: Intro to Java, App Development (Android/iOS), or Web Development</td>
</tr>
<tr>
<th scope="row">3:15-3:30PM</th>
<td>TBD</td>
<td>Early Judging Submissions</td>
<td>First come, first judged. If you're done early, feel free to submit your project to Devpost by 3:15PM.</td>
</tr>
<tr>
<th scope="row">3:30-5:00PM</th>
<td>TBD</td>
<td>Workshop Rotation</td>
<td>Your options are: Intro to Java, App Development (Android/iOS), or Web Development</td>
</tr>
<tr>
<th scope="row">4:45-5:00PM</th>
<td>TBD</td>
<td>Final Judging Submissions</td>
<td>Final judging submissions! Post on Devpost at 4:45PM.</td>
</tr>
<tr>
<th scope="row">5:15-6:00PM</th>
<td>TBD</td>
<td>Final Judging Session</td>
<td>Final session of judging!</td>
</tr>
<tr>
<th scope="row">6:00-6:30PM</th>
<td>TBD</td>
<td>Closing/Awards Ceremony</td>
<td>A fusion of presenting awards and sentimental thoughts.</td>
</tr>
</tbody>
</table>
<div class="spacer"></div>
<img src="media/logo.png" class="logo">
<footer>
<a href="https://twitter.com/quhacks"><img src="media/icons/twitter.png" style="margin-right: 2vw"></a>
<a href="https://www.instagram.com/quhacks/"><img src="media/icons/instagram.png"></a>
<a href="https://www.facebook.com/QuHacks/"><img src="media/icons/facebook.png"></a>
<a href="mailto:info@quhacks.tech"><img src="media/icons/email.png"></a>
</footer>
</body>
</html>