-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
119 lines (106 loc) · 4.16 KB
/
schedule.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Schedule</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 2rem;
line-height: 1.6;
margin: 0;
padding: 0;
}
.schedule {
/* max-width: 600px; */
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
color: #333;
font-size: 36px;
}
@media print {
h1 {
margin: 0;
}
}
.session {
margin: 8px 0;
padding: 8px;
border-bottom: 1px solid #ddd;
page-break-inside: avoid;
}
.time {
font-weight: bold;
}
.title {
color: #555;
font-style: italic;
}
.session {
display: grid;
grid-template-rows: 1fr;
}
.time {
font-size: 1.6rem;
white-space: nowrap;
}
.what {
line-height: 1;
}
</style>
</head>
<body>
<div class="schedule">
<!-- yeah, gross tables, but it means the heading is on all pages -->
<table>
<thead>
<td>
<h1>FFCONF 2024</h1>
</td>
</thead>
<tbody>
<tr>
<td>
<div class="session"><span class="time">09:00 — 09:40</span><span class="what">Registration</span>
</div>
<div class="session"><span class="time">09:40 — 09:50</span><span class="what">Opening
remarks</span></div>
<div class="session"><span class="time">09:50 — 10:30</span><span class="what">Olu Niyi-Awosusi -
<span class="title">Build Better Webs</span></span></div>
<div class="session"><span class="time">10:30 — 11:10</span><span class="what">Léonie Watson - <span
class="title">AI and Accessibility: the Good, the Bad, and the Bollocks</span></span></div>
<div class="session"><span class="time">11:10 — 11:40</span><span class="what">Coffee break (30
mins)</span>
</div>
<div class="session"><span class="time">11:40 — 12:20</span><span class="what">Andy Bell - <span
class="title">Get the core right and the resilient code will follow</span></span></div>
<div class="session"><span class="time">12:20 — 13:00</span><span class="what">Kimberley Cook -
<span class="title">0 - 25,000 people! Growing a global community over 10 years</span></span></div>
<div class="session"><span class="time">13:00 — 14:30</span><span class="what">Lunch break (90
mins)</span>
</div>
<div class="session"><span class="time">14:30 — 15:10</span><span class="what">Amy Hupe - <span
class="title">It all means nothing in the end</span></span></div>
<div class="session"><span class="time">15:10 — 15:50</span><span class="what">Mike Hall - <span
class="title">Debugging the Mind: A Programmer's Guide to Critical Thinking</span></span></div>
<div class="session"><span class="time">15:50 — 16:15</span><span class="what">Ice cream break (25
minutes)</span> </div>
<div class="session"><span class="time">16:15 — 16:55</span><span class="what">Michael Kibedi -
<span class="title">Death, and how tech forgot about mortality</span></span></div>
<div class="session"><span class="time">16:55 — 17:35</span><span class="what">Imran Afzal - <span
class="title">The art of reflection</span></span></div>
<div class="session"><span class="time">17:35 — 17:50</span><span class="what">Closing
remarks</span></div>
<div class="session"><span class="time">17:50 — Late</span><span class="what">After Party</span>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</body>
</html>