tidy-html5/test/html5/formselect2.org.html
2014-08-03 21:04:36 +02:00

21 lines
496 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML form/select/option 2</title>
</head>
<body>
<form action="demo_form.asp" method="get">
<p>Which course would you like to watch today?
<p>
<label>Course: <select name="c">
<option value="8.01.1">Lecture 01: Powers of Ten</option>
<option value="8.01.2">Lecture 02: 1D Kinematics</option>
<option value="8.01.3">Lecture 03: Vectors</option>
</select>
</label>
<p><input type="submit" value="&gt; Play">
</form>
</body>
</html>