HTML and CSS Reference
In-Depth Information
6.
Below the <form> tag, create a table with 4 rows and 2 cells in
each row.
7.
Make the width 50%, give it cellpadding of 4, and a border
of 1.
8.
In the top three left-hand cells, put:
<p>Name:</p>
<p>Address:</p>
<p>Email:</p>
The code should look like this:
<form>
<table width=”50%” cellpadding=”4” border=”1”>
<tr>
<td><p>Name:</p></td>
<td></td>
</tr>
<tr>
<td><p>Address:</p></td>
<td></td>
</tr>
<tr>
<td><p>Email:</p></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
</form>
Search WWH ::




Custom Search