-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTableExample2.html
More file actions
34 lines (31 loc) · 880 Bytes
/
TableExample2.html
File metadata and controls
34 lines (31 loc) · 880 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
<!--This document consist only HTML5-->
<!DOCTYPE html>
<html>
<head>
<title>Table Examples</title>
</head>
<body>
<!--Cellspacing is the distance between two successive cells whereas cellpadding is the gap between
inner wall of the cell and content of a cell. And valign means Vertical Aligment of the content;
These three attributes are not the property of HTML5 -->
<table border="2" cellspacing="0" cellpadding="20">
<tr>
<th>A</th>
<th rowspan="2" valign="bottom">D</th>
<th>F</th>
<th colspan="2">I</th>
</tr>
<tr>
<th>C</th>
<th colspan="2">G</th>
<th>J</th>
</tr>
<tr>
<th>B</th>
<th colspan="2">E</th>
<th>H</th>
<th>k</th>
</tr>
</table>
</body>
</html>