-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tables4.html
90 lines (85 loc) · 2.85 KB
/
Tables4.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<ul type="disc">
<li>
<h2><b> First table </b> </h2>
<table border="2" width="400" height="200" cellspacing="5px">
<thead>
<tr align="center">
<th> Name </th>
<th> Student Id </th>
<th> Work </th>
</tr>
</thead>
<tbody>
<tr align="center">
<td> Lokesh Baviskar </td>
<td> 8147 </td>
<td> Monitoring </td>
</tr>
<tr align="center">
<td>Rajesh Patil</td>
<td> 5252 </td>
<td> Fess Collection </td>
</tr>
</tbody>
<!-- <tfoot>
<tr>
<td>Rajesh</td>
<td> 5252 </td>
</tr>
</tfoot>-->
</table>
</li>
<hr>
<li>
<h2><b> Second table </b> </h2>
<table border="1" cellpadding="20px">
<tr>
<th> Name </th>
<td> Lokesh Baviskar </td>
<td> Rajesh Patil </td>
</tr>
<tr>
<th> Student Id </th>
<td> 8147 </td>
<td> 5252 </td>
</tr>
<tr>
<th> Work </th>
<td> Monitoring </td>
<td> Fess Collection </td>
</tr>
</table>
<hr>
<h1 align="center"> Time Table </h1>
<table align="center" border="2" cellspacing="0">
<tr>
<th width="100" height="50" align="center"><br>Day/ Period </th>
<th width="100" height="50" align="center">I <br>9:30-10:20</th>
<th width="100" height="50" align="center">II <br>10:20-11:10</th>
<th width="100" height="50" align="center">III <br>11:10-12:00</th>
<th width="100" height="50" align="center">12:00-12:40</th>
<th width="100" height="50" align="center">IV <br>12:40-1:30</th>
<th width="100" height="50" align="center">V <br>1:30-2:30</th>
<th width="100" height="50" align="center">VI <br>2:30-3:10</th>
<th width="100" height="50" align="center">VII <br>3:10-4:00</th>
</tr>
<tr width="100" height="50">
<th width="100" height="50" align="center">Monday</th>
<td width="100" height="50" align="center">Eng</td>
<td width="100" height="50" align="center">Mat</td>
<td width="100" height="50" align="center">Che</td>
<th width="100" height="50" align="center" rowspan="6" align="center">L <br> U <br> N <br> C <br> H <br> </th>
<td width="100" height="50" align="center" colspan="3" cellspacing="0">Lab</td>
<td width="100" height="50" align="center"> phy </td>
</tr>
</table>
</ul>
</body>
</html>