-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable_prac.html
49 lines (44 loc) · 1.04 KB
/
table_prac.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table border="black">
<caption>Student Infromation </caption>
<thead>
<tr>
<th rowspan="6">Info</th>
<th rowspan="2">Name</th>
<th colspan="2">Address</th>
</tr>
<tr>
<th>City</th>
<th>House</th>
</tr>
<tr>
<td>A</td>
<td>Delhi</td>
<td>1</td>
</tr>
<tr>
<td>B</td>
<td>Mumbai</td>
<td>2</td>
</tr>
<tr>
<td>C</td>
<td>Kolkata</td>
<td>3</td>
</tr>
<tr>
<td>D</td>
<td>Pune</td>
<td>4</td>
</tr>
</thead>
</table>
</body>
</html>