-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path44Table Nested.html
More file actions
44 lines (40 loc) · 1 KB
/
44Table Nested.html
File metadata and controls
44 lines (40 loc) · 1 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Nested Table</title>
</head>
<body>
<h1><center>Nested Table</center></h1>
<hr />
<table border="5" align="center" width="70%" bgcolor="yellow">
<th>Name</th>
<th>Result</th>
<tr>
<td align="center">
First Name & Last Name
<table border="2" align="center" width="100%" bgcolor="pink">
<tr>
<td align="center">Sumit</td>
<td align="center">Kumar</td>
</tr>
<tr>
<td align="center">Bhanu</td>
<td align="center">Kumar</td>
</tr>
</table>
</td>
<td align="center">1st</td>
</tr>
<tr>
<td align="center">Shubham</td>
<td align="center" rowspan="3">2nd</td>
</tr>
<tr>
<td align="center">Rahul</td>
</tr>
<tr>
<td align="center">Shanu</td>
</tr>
</table>
</body>
</html>