-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtableDemo.html
More file actions
50 lines (50 loc) · 1.07 KB
/
tableDemo.html
File metadata and controls
50 lines (50 loc) · 1.07 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
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head> <title> Tables </title>
</head>
<body>
<table width="400" border="1">
<thead>
<tr>
<td rowspan="3" bgcolor="yellow"> Header </td>
</tr>
<tr>
<th colspan="2"> Name </th>
<th colspan="3"> Address </th>
</tr>
<tr>
<td> First Name </td>
<td> Last Name </td>
<td> City </td>
<td> State </td>
<td> PinCode </td>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="3" bgcolor="lime"> Body </th>
</tr>
<tr height="50">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr height="50">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</tfoot>
<tr>
<td rowspan="2" bgcolor="yellow"> Footer </td>
</tr>
<tr> <td colspan="5" align="center"> © copyright 2019 </td> </tr>
</tfoot>
</table>
</body>
</html>