-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschedule.html
More file actions
33 lines (33 loc) · 1.12 KB
/
Copy pathschedule.html
File metadata and controls
33 lines (33 loc) · 1.12 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
<html>
<head>
<style>
table { border-collapse: collapse;}
table, th, td {
border: 1px solid black;
}
th, td {
padding: 0.5em;
}
th {
background-color: #777777;
color: white;
}
tr:nth-child(even) {background-color: #f2f2f2;}
tr:hover {background-color: #ddd;}
</style>
</head>
<body>
<table>
<tr><th>Time</th><th>Event</th></tr>
<tr><td>9:00-9:30 </td><td>Coaches meet up before hand</td></tr>
<tr><td>9:30-10:00 </td><td>Registration/Coffee/Setup</td></tr>
<tr><td>10:00-10:30</td><td>Introductory talk and dividing up into groups</td></tr>
<tr><td>10:30-12:30</td><td>Working on first notebook with your group</td></tr>
<tr><td>12:30-1:30 </td><td>Lunch</td></tr>
<tr><td>1:30-3:00 </td><td>Finishing up first notebook, exploring areas of interest suggested by notebook, exploring other notebooks</td></tr>
<tr><td>3:00-3:30 </td><td>Group interaction/a longer talk</td></tr>
<tr><td>3:30-4:30 </td><td>Continue working within group on new notebook/areas of interest</td></tr>
<tr><td>4:30-5:00 </td><td>Wrap up</td></tr>
</table>
</body>
</html>