ASDV-WebDev/Semester 1/Chapter ZIPs/JavaScript/ch6/ex_6_17.html

27 lines
775 B
HTML

<html>
<head>
<title>Example 6.17</title>
<script>
</script>
</head>
<body>
<table align = "center" width = "60%">
<tr><td><h3>Selection Lists</h3></td></tr>
<tr><td>
<h3>Select three favorite foods:</h3>
<select multiple = "multiple" name="food" size = "10" id="food">
<option>meatloaf</option>
<option>macaroni and cheese</option>
<option>pizza</option>
<option>fish and chips</option>
<option>fried chicken</option>
<option>hamburgers and fries</option>
<option>potato curry</option>
<option>spaghetti</option>
<option>sushi</option>
<option>burritos</option>
</select>
</td></tr>
<tr><td><h3>You must hold down the CTRL key on a Windows computer <br />
or the Command button on a Mac to select multiple options.</h3>
</table></body></html>