HTML basic tutorial form text area
Text area
Syntax format:
<textarea name = "Name" cols = "Width ” rows = “Height”></textarea>
Common attributes
- ##name: element name
- cols: Width, refers to how many characters are wide.
- Rows: Height refers to the number of rows high.
Example:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>用戶注冊</title>
</head>
<body>
<font size="5" color="red">歡迎注冊php.cn</font>
<form name="user" method="get" action="" >
用戶名:<input type="text" name="username"/>
<br/>
密碼:<input type="password" name="userpwd"/>
<br/>
性別:<input type="radio" name="sex" value="男" checked=checked>男
<input type="radio" name="sex" value="女">女
<br/>
愛好:<input type="checkbox" name="hobby" value="運動">運動
<input type="checkbox" name="hobby" value="看電影">看電影
<input type="checkbox" name="hobby" value="編程" checked="checked">編程
<input type="checkbox" name="hobby" value="宅著">宅著
<br/>所在地:
<select name="city">
<option value="北京">北京<option>
<option value="上海">上海<option>
<option value="杭州" selected="selected">杭州<option>
<option value="南京">南京<option>
<option value="合肥">合肥<option>
</select>
<br/>個性介紹:<br/><textarea name=" introduction" cols="30" rows="4"></textarea>
<br/><input type="submit" value="提交信息"/>
</form>
</body>