<!DOCTYPE html>
<html>
<!--
a second example of HTML5 drop-down menu - allowing multiple choices?
by: Sharon Tuttle
last modified: 2-11-13
-->
<head>
<title> Playing with a drop-down menu (choose multiple?) </title>
<meta charset="utf-8" />
</head>
<body>
<h1> Playing with a drop-down menu (choose multiple?) </h1>
<form action="http://users.humboldt.edu/smtuttle">
Choose zero(?) or more chocolate brands:
<select name="chocolate[]" size="3" multiple="multiple">
<option value="ghirardeli"> Ghirardeli </option>
<option value="hersheys"> Hershey's </option>
<option value="sees"
selected="selected"> See's </option>
<option value="venlo"> Venlo </option>
<option value="drakesglen"
selected="selected"> Drake's Glen </option>
<option value="godiva"> Godiva </option>
</select> <br />
<input type="submit" value="submit" />
</form>
<hr />
<p>
<a href="http://validator.w3.org/check/referer">
Validate this HTML5 page
</a>
</p>
<p>
For full credit, this page must also pass the tests at
<a href="http://lint.brihten.com/html/">
http://lint.brihten.com/html/ </a> when its URL is
entered (and without modifying the default options).
</p>
</body>
</html>