Create a new form
-
Create a new page in the Travel West site with the file name favoritesform.html.
Title it My Favorite Places.
-
Insert <form> tags.
Between them, insert a table with four rows, and two cells in each row.
-
Fill the cells with the text and form objects seen below:

TIP: The HTML code for a drop-down list looks like this:
<select name="select">
<option>First Choice</option>
<option>Second Choice</option>
<option>Third Choice</option>
</select>
The HTML code for radio buttons looks like this:
<input type="radio" name="radios" value="radio1"> Radio button 1
<br>
<input type="radio" name="radios" value="radio2"> Radio button 2
© 2016 In Pictures, Inc. All Rights Reserved.