注册界面练习
代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表单练习</title>
</head>
<body>
<form action="http://www.baidu.com">
<fieldset>
<legend>注册界面</legend>
<p>
<label for="ad">账号:</label><input type="text" id="ad">
</p>
<p>
<label for="td">密码:</label><input type="password" id="td">
</p>
<p>
性别:
<input type="radio"name="gender">男
<input type="radio"name="gender">女
<input type="radio"name="gender" checked="checked">保密
</p>
<p>
爱好:
<input type="checkbox">爬山
<input type="checkbox">篮球
<input type="checkbox" checked="checked">足浴
</p>
<p>
简介:
<textarea name="desc" id="" cols="30" rows="10"></textarea>
</p>
<p>
生日:<input type="date">
</p>
<p>
邮箱:<input type="email">
</p>
<p>
电话:<input type="number">
</p>
</fieldset>
</form>
</body>
</html>