Chapter ZIP

This commit is contained in:
2023-03-24 13:26:48 -05:00
parent bbce21cf8b
commit c032ee5d22
34 changed files with 1530 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<html>
<head>
<title>Example 6.15</title>
<script>
</script>
</head>
<body>
<table align = "center" width = "60%">
<tr><td><h2 align="center">Colors</h2></td>
</tr>
<tr><td>
<h3>What color do you like best?</h3>
<select name="color" size = "5" id="color">
<option value = "favorite color: periwinkle">periwinkle</option>
<option value = "favorite color: fawn">fawn</option>
<option value = "favorite color: melon" selected = "selected">melon</option>
<option value = "favorite color: mocha">mocha</option>
<option value = "favorite color: raspberry">raspberry</option>
</select>
</td></tr>
</table></body></html>