our approach
|
new tutorials
|
contact us
HTML & CSS In Pictures
HTML Basics
Navigation & Layout
Interactivity
Advanced Layout
Insert fields
In the top right-hand cell, insert a text input field. Do this with an
<input>
tag:
<table width="50%" cellpadding="5" border="1">
<tr>
<td>Name:</td>
<td>
<input type="text" name="name" size="20">
</td>
</tr>
TIP:
The
type
of this form input field is
text
, which makes it a textbox.
The
name
of this input is
name
, which is how the server knows that it's where people enter their name.
The
size
is
20
characters—the length of the textbox.
Insert textbox input fields in the table cells next to
Address
and
Email
as well.
Name the input textbox next to
Address
"
address
."
<input type="text"
name="address"
size="20">
Name the input textbox next to
Email
"
email
."
<< BACK
NEXT >>