<form action="http://www.baidu.com">
<fieldset>
<legend>helloword</legend>
<p>账号<input type="text"></p>
<p>密码<input type="password"></p>
<p>性别
<input type="radio" name="gender" checked="checked">男
<input type="radio" name="gender">女
</p>
<p>爱好
<input type="checkbox">读书
<input type="checkbox">看报纸
</p>
<p>简介
<br>
<textarea cols="20" rows="3"></textarea>
</p>
<p>邮箱
<input type="email">
</p>
<p>手机
<input type="number">
</p>
<p>生日
<input type="date">
</p>
<p>
<input type="submit" value="注册">
<input type="reset" value="清空">
</p>
</fieldset>
</form>