blob: ae4be2d02bcdd235130823d98ea73fa55c85e279 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Simple test table</title>
</head>
<body>
<table id="ref1">
<caption>The table caption</caption>
<colgroup>
<col id="group"/> <col id="code"/> <col id="params"/> <col id="description"/>
</colgroup>
<tbody>
<tr id="titlerow"> <th>Code </th><th>Parameters </th><th>Description </th></tr>
<tr><th>Group</th><td colspan="2">Group note</td></tr>
<tr><td>Term</td><td/><td>Description</td></tr>
</tbody>
</table>
</body>
</html>
|