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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
<html><head>
<body>
<h1> heading </h1>
<p>
first paragraph of text
<p>
second paragraph contains a table
<table>
<tr>
<th>
with a header cell,
<th>
another one, containing a
<p>
paragraph, and
<td>
a data cell,
<tr>
<td>
then a data cell in the second row,
<td>
another data cell, with a definition list
<dl title=someTitle>
<dt id=someId > with one term
<dd>
and a definition containing a
<hr noshade>
rule,
<dd>
and another, containing a
<p> paragraph and a <br>
blank row,
<dd>
and a third one;
</dl>
the cell ends with a closing tag,
</td>
<td>
and is followed by another cell, ending with a single tag
<hr noshade title="ruleTitle">
followed by some text at the end of the table row;
<tr>
<th>
the last row contains another header cell,
<td>
<table>
<tr>
<td>
a nested
<td>
table
</table>
in the second cell,
<td>
and a last cell with a
<form>
form containing
<input type="text" size=12 value="a text input" >, and
<input type=text value="another one, as a single tag" size=28 />,
and three more:
<input type="text">
<input type="text">
<input type="text">,
a select with two options:
<select>
<option>first
<option>second
</select>,
and a button at the end:
<input type="button" value="button">
</form>
</table>
and finally some text after the table.
|