our approach
|
new tutorials
|
contact us
HTML & CSS In Pictures
HTML Basics
Navigation & Layout
Interactivity
Advanced Layout
Copy and past the code for the first row to create two more rows:
<table width="50%" cellpadding="5" border="1">
<tr>
<td>Name:</td>
<td></td>
</tr>
<tr>
<td>Name:</td>
<td></td>
</tr>
<tr>
<td>Name:</td>
<td></td>
</tr>
</table>
In the two new rows, replace the word
Name
with
Address
and
Email
:
<table width="50%" cellpadding="5" border="1">
<tr>
<td>Name:</td>
<td></td>
</tr>
<tr>
<td>
Address:
</td>
<td></td>
</tr>
<tr>
<td>
Email:
</td>
<td></td>
</tr>
</table>
Save
infoform.html
, then view it in the browser.
It should look like this:
<< BACK
NEXT >>