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

17 lines
718 B
HTML

<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>