-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path19_xhtml.html
More file actions
24 lines (23 loc) · 776 Bytes
/
19_xhtml.html
File metadata and controls
24 lines (23 loc) · 776 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Q.19 XHTML</title>
</head>
<body>
<h2>Nested Table Example</h2>
<table border="1" cellspacing="0" cellpadding="5">
<tr>
<td rowspan="2">Row 1, Cell 1<br />Spanning 2 Rows</td>
<td colspan="2">Row 1, Cell 2 and 3<br />Spanning 2 Columns</td>
</tr>
<tr>
<td>Row 2, Cell 2</td>
<td>Row 2, Cell 3</td>
</tr>
<tr>
<td colspan="3">Row 3, Cell 1, 2, and 3<br />Spanning 3 Columns</td>
</tr>
</table>
</body>
</html>