<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width-device,initial-scale=1.0">
<title>HAPULUOSI</title>
</head>
<body>
<form action="">
<p>
用户名:<input type="text" placeholder="请输入用户名">
</p>
<p>
密 码:<input type="text" placeholder="请输入密码">(text换为password可以让输入的密码保密)
</p>
<p>
性 别:
<label>
<input type="radio" name='sex'>男
</label>
<label>
<input type="radio" name='sex'>女
</label>
<label>
<input type="radio" name='sex'>保密
</label>
</p>
<p>
爱 好:
<input type="checkbox" name="hobby">吃
<input type="checkbox" name="hobby">喝
<input type="checkbox" name="hobby">拉
<input type="checkbox" name="hobby">撒
<input type="checkbox" name="hobby">睡
</p>
</form>
</body>
</html>
<p>
爱 好:
<input type="checkbox" name="hobby">吃
<input type="checkbox" name="hobby">喝
<input type="checkbox" name="hobby">拉
<input type="checkbox" name="hobby">撒
<input type="checkbox" name="hobby">睡
</p>
<p>
自我介绍:
<textarea rows="4s" cols="10" placeholder="请输入自我介绍" style="resize:none"></textarea>
</p>
籍贯:
<select>
<option>北京</option>
<option>安徽</option>
<option>广州</option>
<option>深圳</option>
<option>天津</option>
<option>上海</option>
</select>
</form>
</body>
</html>