-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab.html
48 lines (48 loc) · 1.44 KB
/
lab.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
<html>
<head>
<title>Table</title>
</head>
<body>
<table border="1" cellspacing="0">
<tr>
<td rowspan="3">Day</td>
<td colspan="3" align="center">SEMINAR</td>
</tr>
<tr>
<td colspan="2">Schedule</td>
<td rowspan="2">Topic</td>
</tr>
<tr>
<td>Begin</td>
<td>End</td>
</tr>
<tr>
<td rowspan="2">Sunday</td>
<td rowspan="2">7 AM</td>
<td rowspan="2">12 PM</td>
<td>IOT</td>
</tr>
<tr>
<td>Cloud Computing</td>
</tr>
<tr>
<td rowspan="3">Monday</td>
<td>8 AM</td>
<td>1 PM</td>
<td rowspan="2">Cyber Security</td>
</tr>
<tr>
<td>12 PM</td>
<td>1 PM</td>
</tr>
<tr>
<td>2 PM</td>
<td>3 PM</td>
<td>Web 3.0</td>
</tr>
<tr>
<td colspan="4" align="center"> <img src="map-locator.png" height="13px" width="15px"> Venue: <a href="https://en.wikipedia.org/wiki/Kathmandu" target="_blank">Kathmandu, Nepal</a> </td>
</tr>
</table>
</body>
</html>