<html>
<body>
<h1>textarea 元素</h1>
<form action="/demo/action_page.php">
<p><label for="w3review">评论 W3School:</label></p>
<textarea id="w3review" name="w3review" rows="4" cols="50">在 w3school.com.cn,您将学习如何制作网站。他们提供所有 Web 开发技术的免费教程。</textarea>
<br>
<input type="submit" value="提交">
</form>
<p>点击“提交”按钮后,表单数据将被发送到服务器上名为“action_page.php”的页面。</p>
</body>
</html>