1.
<head>
<meta charset="UTF-8">
<title>申请表</title>
</head>
<body>
<h1>申请表</h1>
<form>
<label for="name">姓名:</label>
<input type="text" name="name"id="name" size="30"><br><br>
教育程度:
<input type="checkbox" name="education" value="硕士" id="硕士" checked>
<label for="硕士">硕士</label>
<input type="checkbox" name="education" value="博士" id="博士">
<label for="博士">博士</label>
<br><br>
<label for="email">常用邮箱:</label>
<input type="email" id="email" maxlength="32"><br><br>
性别:<input type="radio" name="gen" value="男" id="男" checked>
<label for="男">男</label>
<input type="radio" name="gen" value="女" id="女">
<label for="女">女</label>
<br><br>
<label for="age">年龄:</label>
<input type="number" id="age" min="1" max="120"><br><br>
<label for="月薪">月薪:</label>
<input type="number" id="月薪" size="10"><br><br>
附注:<textarea rows="4" cols="35">
请在这里键入附注
</textarea><br><br>
国籍<select name="country">
<option selected>澳大利亚</option>
<option>中国</option>
<option>美国</option>
<option>意大利</option>
<option>日本</option>
<option>英国</option>
<option>法国</option>
<option>巴西</option>
<option>俄罗斯</option>
<option>阿拉伯</option>
</select>
<br><br>
<input type="submit" value="提 交">
<input type="reset" value="重 置">
</form>
</body>
</html>`
4.`<head>
<meta charset="UTF-8">
<title>电子产品调查问卷</title>
</head>
<body>
<h1>American Metric 电子产品调查表</h1><br>
<form method="post" action="">
姓名:<input type="text" name="name" placeholder="输入必须是2-6位字符" required><br><br>
购买日期:<input type="text" size="6" max="4" required>年
<select>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
<option>11</option>
<option>12</option>
</select>月
<select>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
<option>11</option>
<option>12</option>
<option>13</option>
<option>14</option>
<option>15</option>
<option>16</option>
<option>17</option>
<option>18</option>
<option>19</option>
<option>20</option>
<option>21</option>
<option>22</option>
<option>23</option>
<option>24</option>
<option>25</option>
<option>26</option>
<option>27</option>
<option>28</option>
<option>29</option>
<option>30</option>
<option>31</option>
</select>日
<br><br>
电子邮箱地址:<input type="email" maxlength="32" name="email" placeholder="www.baidu.com" required><br>
<br>
手机号码:<input type="text" name="tel" required pattern="1[358]\d{9}" placeholder="输入必须是以13/15/18
开头的11位数字" size="35"><br><br>
您是否查看过我们的在线产品目录?<input type="radio" name="choice" value="是" id="是" checked>
<label for="是">是</label>
<input type="radio" name="choice" value="否" id="否">
<label for="否">否</label><br><br>
如果查看过,您对那些产品有兴趣购买?(选择提供的产品)<br>
<input type="checkbox" name="chanping" id="1">
<label for="1">大屏幕电视机</label>
<input type="checkbox" name="chanping" id="2">
<label for="2">音频设备</label>
<input type="checkbox" name="chanping" id="3">
<label for="3">视频设备</label>
<input type="checkbox" name="chanping" id="4">
<label for="4">相机</label><br><br>
在填写订单之前,您还有什么问题、意见或建议?<br>
<textarea rows="4" cols="35">
您的输入:
</textarea><br><br>
<input type="submit" value="提 交">
<input type="reset" value="重 置" disabled>
</form>
</body>
</html>