-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice.html
28 lines (28 loc) · 940 Bytes
/
practice.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Time Table</title>
</head>
<body>
<table align="center" border="2px">
<tr>
<th>Days</th>
<th>9-10</th>
<th>10-11</th>
<th>11-12</th>
<th>9-10</th>
<th>10-11</th>
<th>11-12</th>
</tr>
<tr align="center">
<td rowspan="3">Monday</td>
<td align="center"><font>
<b><u>Data Structure</u></b><br> Group1 <br><i>Babita (Guest)</i><br>Room :CSE <br>LAb 217 Block - 1</font></td>
<td align="center" colspan="3"><font><b><u>Database System (P)</u></b> <br> Group 4 <br> <i>Mamta Juneja </i> <br> Room - CSE <br> Lab 217 Block - 1</font></td>
<td align="center"><font></font></td>
</tr>
</table>
</body>
</html>