Forum Moderators: open
<tr>
<td><center>fieldset</center></td>
<td>draws a box around its containing elements</td>
<td>
<fieldset>
<legend>phone book</legend>
Name <input type="text" size="9"></input>
Number <input type="text" size="9"></input>
</fieldset>
</td>
</tr>
<table>
<tr>
<td align="center">fieldset</td>
<td>draws a box around its containing elements</td>
<td>
<fieldset>
<legend>phone book</legend>
Name <input type="text" size="9"></input>
Number <input type="text" size="9"></input>
</fieldset>
</td>
</tr>
</table>
<input type="text" />
<br />
<hr />
And other tags that used to not require closing tags now need them:
<option></option>
<li></li>
Good to know for future reference, anyway.