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,16 @@
<html>
<head>
<title>Example 6.9</title>
</head>
<body>
<table width = 60% align = "center"><tr><td><br />
<h2> Enter your comments or questions below</h2>
<p>This box uses the default values for rows and columns and has no initial value: <br />
<textarea name = "the_box" id = "the_box"></textarea> </p>
<p>This box is set to 3 rows and 15 columns and has text that appears initially: <br />
<textarea name = "the_box" id = "the_box" rows = "3" cols = "15">Hi!</textarea> </p>
<p>This box is set to 7 rows and 80 columns and has inital text: <br />
<textarea name = "the_box" id = "the_box" rows = "10" cols = "50">Enter your comments or questions here</textarea> </p>
</td></tr></table>
</body></html>