Create form2.html
This commit is contained in:
22
html/form2.html
Normal file
22
html/form2.html
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<form title="form" action="/action_page.php">
|
||||||
|
<fieldset>
|
||||||
|
<legend>Sports</legend>
|
||||||
|
<label for="name">Name:</label>
|
||||||
|
<input type="text" id="name">
|
||||||
|
<br><br>
|
||||||
|
<select name="team">
|
||||||
|
<option value = "tennis" selected>Tennis</option>
|
||||||
|
<option value = "track">Track</option>
|
||||||
|
</select>
|
||||||
|
<br><br>
|
||||||
|
<input type="checkbox" name="days" value="wkend"> Weekends
|
||||||
|
<input type="checkbox" name="days" value = "wkday"> After school
|
||||||
|
<br>
|
||||||
|
<p>Varsity / JV:
|
||||||
|
<input type="radio" name="level" value="varsity"> Varsity
|
||||||
|
<input type="radio" name="level" value="jv"> JV
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<input type="submit" value="Submit">
|
||||||
|
</fieldset>
|
||||||
|
</form>
|
||||||
Reference in New Issue
Block a user