1. (其它)写一个form,包含图2-12中所有元素,发送的页面自己指定
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>支付表单</title>
</head>
<body>
<div style="height: 700px;width: 400px;border: 1px solid black;">
<h1>支付表单</h1><br>
必选字段:*<br>
<h2>联系人信息</h2>
<form action="https://www.baidu.com" >
<fieldset style="height: 50px;width: 100px;">
<legend>标题</legend>
<input type="radio" name="sex" value="男">男<br>
<input type="radio" name="sex" value="女">女</fieldset>
姓名:*<input type="text" name="Name"><br>
E-mail:* <input type="" name="e-mail" /><br>
密码:* <input type="password" name="password" /><br>
<h2>支付信息</h2><br>
卡类型:<select name="downlist" name="ka">
<option value="邮政">邮政</option>
<option value="建设">建设</option>
<option value="农业">农业</option>
</select><br>
卡号:* <input type="text" name="kanumber" /><br>
卡有效日期:* <input type="date" name="Date" /><br>
<p style="font-family: ;">输入格式 月/年</p>
<input type="submit" value="登录" >
</form>
</div>
</body>
</html>