定义文本域
- <textarea></textarea> —— 定义文本域
○ rows —— 设置文本域的可见行数
○ cols —— 设置文本域的可见宽度
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>网页标题</title>
</head>
<body>
<h3>自我介绍:</h3>
<form action="https:www.baidu.com" method="post">
<p>
<textarea rows="9" cols="45"></textarea>
</p>
<p><input type="reset" value="重置" /></p>
</form>
</body>
</html>