-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhtml11.html
More file actions
61 lines (61 loc) · 1020 Bytes
/
html11.html
File metadata and controls
61 lines (61 loc) · 1020 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<table border="1">
<tr>
<th colspan="5">Student Details</th>
</tr>
<tr>
<th rowspan="2" width="20%" height="50%">Shift</th>
<th rowspan="2" width="30%">Student Name</th>
<th rowspan="2" width="20%">Course</th>
<th colspan="2">Contact details</th>
</tr>
<tr>
<th width="20%">Mobile</th>
<th width="20%">Landline</th>
</tr>
<tr>
<td rowspan="3"></td>
<td>Subhin</td>
<td>GM</td>
<td>123456</td>
<td>987654</td>
</tr>
<tr>
<td>Abhishek</td>
<td>CM</td>
<td>234567</td>
<td>876543</td>
</tr>
<tr>
<td>Shameem</td>
<td>HM</td>
<td>345678</td>
<td>765432</td>
</tr>
<tr>
<td rowspan="3"></td>
<td>Atheendrh</td>
<td>CM</td>
<td>456789</td>
<td>654321</td>
</tr>
<tr>
<td>Vishnu</td>
<td>HM</td>
<td>567890</td>
<td>789012</td>
</tr>
<tr>
<td>Jawad</td>
<td>GM</td>
<td>678901</td>
<td>890123</td>
</tr>
</table>
</body>
</html>