Sample Form 3

Same as previous except for adding a value to the submit button.

Just type in your name (and click Submit) to enter the contest:
First name:
Last name:


The HTML used to create the form above:

<form action="http://www.headfirstlabs.com/contest.php" method="POST">
  <p>Just type in your name (and click Submit) to enter the contest:<br />

  First name: <input type="text" name="firstname" value="" /><br />
  Last name:  <input type="text" name="lastname" value="" /><br />
  <input type="submit" value="Enter now" />
  </p>
</form>