-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpt1.html
More file actions
42 lines (38 loc) · 737 Bytes
/
pt1.html
File metadata and controls
42 lines (38 loc) · 737 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
<html>
<head>
<title>HTML TABLES</title>
</head>
<style>
table, th, td{
border: 2px slide green;
padding: 2px;
border-collapse: collapse;
}
</style>
<body>
<table border="2" cellpadding="20" cellspacing="20">
<caption>A test table with merged cells</caption>
<tr>
<th rowspan="2"> </th>
<th colspan="2">Average</th>
<th rowspan="2">Red eyes</th>
</tr>
<tr>
<th>height</th>
<th>weight</th>
</tr>
<tr>
<th>Male</th>
<td>1.9</td>
<td>0.003</td>
<td>40%</td>
</tr>
<tr>
<th>Female</th>
<td>1.7</td>
<td>0.002</td>
<td>43%</td>
</tr>
</table>
</body>
</html>