Sample Form 1

This form include only the ubiquitous text input fields. It does nothing with the data yet.

Favorite movie:
Favorite snack food:

In the following field, enter your comments on the running theme of "Best Movies". Don't hold back.

Comments:

The HTML used to create the form above:

<h1>Sample Form 1</h1>
<p>This form include only the ubiquitous text input fields. 
It does nothing with the data yet.</p>

<form>
Favorite movie: <input type="Text" value="your favorite"><br>
Favorite snack food: <input type="Text" value="munchies"><br>
<p>In the following field, enter your comments on the running
theme of "Best Movies". Don't hold back.</p>
Comments: <input type="Text" size="1">
</form>