1

<!DOCTYPE html>
<html>
<head>
<title>表单</title>
<meta charset="utf-8">
</head>
<body>
<form>
账号:<input type="text" name="name">
<br>
<br>
密码:<input type="password" name="password">
<br>
<br>
性别:<input type="radio" name="sex">男<input type="radio" name="sex">女
<br>
<br>
爱好:<input type="checkbox" name="zuqiu"checked="checked">足球 <input type="checkbox" name="dongm"checked="checked">动漫 <input type="checkbox" name="youxi"checked="checked">游戏
<br>
<br>
自我介绍:<br>
<textarea cols="35"rows="10"value="ziwojieshao">

</textarea>
<br>
<br>
地址:
<select name="dizhi">
<option>四川</option>
<option>北京</option>
<option>上海</option>
</select>
<br>
<br>
<input type="submit" value="提交">
<input type="reset" value="重置">
<input type="button" value="按钮">
</form>
</body>
</html>

原文地址:https://www.cnblogs.com/yy50831/p/9657214.html