This form example demonstrates how to code a form with a select tag in it.
<!DOCTYPE html>
<html>
<head>
<title>XoaX.net's HTML: Form - Select Tag Example</title>
</head>
<body>
<form>
Evangelists:<br />
<select name="evangelists">
<option value="matthew">Matthew</option>
<option value="mark">Mark</option>
<option value="luke">Luke</option>
<option value="john">John</option>
</select><br />
</form>
</body>
</html>© 20072025 XoaX.net LLC. All rights reserved.