<!DOCTYPE html>
<html lang="en">
<head>
<title>表格</title>
</head>
<body>
<form>
姓名:
<input type="text" name="name">
<br />
年龄:
<input type="text" name="age">
<br />
性别:
男:
<input type="radio" checked="checked" name="Sex" value="male" />
女:
<input type="radio" name="Sex" value="female" />
<br />
爱好:
<br />
运动类:
<br />
游泳:
<input type="checkbox" name="Swim">
篮球:
<input type="checkbox" name="Basketball">
足球:
<input type="checkbox" name="Football">
羽毛球:
<input type="checkbox" name="Badminton">
跑步:
<input type="checkbox" name="Run">
<br />
艺术类:
<br />
绘画:
<input type="checkbox" name="Draw">
音乐:
<input type="checkbox" name="Music">
舞蹈:
<input type="checkbox" name="Dance">
雕刻:
<input type="checkbox" name="Sculpture">
</form>
</body>
</html>
转载于:https://www.cnblogs.com/azurite/p/9657153.html