Insert fields
  1. 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.
  2. Insert textbox input fields in the table cells next to Address and Email as well.
  3. Name the input textbox next to Address "address."

    <input type="text" name="address" size="20">
  4. Name the input textbox next to Email "email."