-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathprogram.html
More file actions
129 lines (126 loc) · 2.86 KB
/
program.html
File metadata and controls
129 lines (126 loc) · 2.86 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
121
122
123
124
125
126
127
128
129
<!--
<section id="program">
<div class="verticalhorizontal">
<img src="img/portfolio/ProgramBHD2024.png" />
</div>
</section>
-->
<section id="program" class="text-center py-5 bg-dark">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12 text-center">
<h1 class="display-4 custom-yellow fw-bold">BHD2025 PROGRAM</h1>
<h3 class="custom-yellow mb-3">November 19–21, 2025</h3>
<h2 class="white mb-3">
<!--
The table is inserted inside a h2 class. If taken away you have to
better declare the table class
-->
<table>
<tr>
<th>Hours</th>
<td>Wednesday (19th)</td>
<td>Thursday (20th)</td>
<td>Friday (21st)</td>
</tr>
<tr>
<th>8:30-9:00</th>
<td>Registration</td>
</tr>
<tr>
<th>09:00 - 09:30</th>
<td>Welcome Session</td>
<td rowspan="4"> Project Time</td>
<td rowspan="4">Project Time</td>
</tr>
<tr>
<th>9:30-10:00</th>
<td rowspan="3">1st Speaker</td>
</tr>
<tr>
<th>10:00-10:30</th>
</tr>
<tr>
<th>10:30-11:00</th>
</tr>
<tr>
<th>11:00 - 11:30</th>
<td colspan="3">COFFEE BREAK</td>
</tr>
<tr>
<th>11.30 - 12:00</th>
<td>Project Pitch</td>
<td rowspan="3">3rd Speaker</td>
<td rowspan="3">Online Speaker</td>
</tr>
<tr>
<th>12:00-12:30</th>
<td rowspan="2">Project Kick-off</td>
</tr>
<tr>
<th>12:30-13:00</th>
</tr>
<tr>
<th>13:00 - 13:30</th>
<td rowspan="2" colspan="3">LUNCH BREAK</td>
</tr>
<tr>
<th>13:30-14:00</th>
</tr>
<tr>
<th>14:00 - 14:30</th>
<td rowspan="3">2nd Speaker</td>
<td>Unconference</td>
<td>Unconference</td>
</tr>
<tr>
<th>14:30- 15:00</th>
<td rowspan="4">Project Time</td>
<td rowspan="4">Project Time</td>
</tr>
<tr>
<th>15:00-15:30</th>
</tr>
<tr>
<th>15:30 - 16:00</th>
<td rowspan="2">Project Time</td>
</tr>
<tr>
<th>16:00-16.30</th>
</tr>
<tr>
<th>16:30 - 17:00</th>
<td colspan="3">COFFEE BREAK</td>
</tr>
<tr>
<th>17:00 - 17:30</th>
<td rowspan="3">Project Time</td>
<td rowspan="3">Project Time</td>
<td rowspan="2">Project Results</td>
</tr>
<tr>
<th>17:30-18:00</th>
</tr>
<tr>
<th>18:00-18:30</th>
<td>Closing Remarks</td>
</tr>
<tr>
<th>18:30 Onwards</th>
<td>Meet and Greet</td>
<td>Social</td>
</tr>
</table>
</div>
</div>
</div>
</section>
<style>
.custom-yellow {
color: #ffeb2b;
}
.white {
color: #ffffff;
text-transform: none; /* Ensure no uppercase styling is forced */
}
</style>