Chapter ZIP
This commit is contained in:
27
Chapter ZIPs/JavaScript/ch6/ex_6_17.html
Executable file
27
Chapter ZIPs/JavaScript/ch6/ex_6_17.html
Executable file
@@ -0,0 +1,27 @@
|
||||
<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>
|
Reference in New Issue
Block a user