-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimetable.html
60 lines (53 loc) · 1.84 KB
/
timetable.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
<!-- 8. Create a table to display a conference schedule. Each row corresponds to a time slot, an- each column
corresponds to a room. Some time slots might have multiple sessions running simultaneously in different
rooms. Utilize rowspan and colspan attributes as necessary to accommodate this complex schedule.
(use table attribute “cellpadding” to give extra padding in each table cell). -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timetable</title>
</head>
<body>
<h1>Conference Schedule</h1>
<table border="1" cellpadding="8" cellspacing="2">
<th>Time</th>
<th>Room 1</th>
<th>Room 2</th>
<th>Room 3</th>
<th>Room 4</th>
<tr>
<td rowspan="3">9:00 AM - 10:00 AM</td>
<td rowspan="2">Keynote</td>
<td>Session A</td>
<td>Session B</td>
<td rowspan="3">Session C</td>
</tr>
<tr>
<td>Session D</td>
<td>Session E</td>
</tr>
<tr>
<td>10:30 AM - 11:30 AM</td>
<td colspan="2">Session F</td>
</tr>
<tr>
<td>12:00 PM - 1:00 PM</td>
<td colspan="4">Lunch Break</td>
</tr>
<tr>
<td rowspan="2">1:00 PM - 2:00 PM</td>
<td>Session G</td>
<td rowspan="2">Session H</td>
<td>Session I</td>
<td>Session J</td>
</tr>
<tr>
<td>Session K</td>
<td>Session L</td>
<td>Session M</td>
</tr>
</table>
</body>
</html>