console
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>支付表单<title>
<boby>
<table border="1"width="500"cellpadding="10"cellspacing="0"align="center">
<form action="http://www..." method="get">
<p>
<label>性别:</label>
<input type="radio" name="gender" value="0" /> 男
<input type="radio" name="gender" value="1" /> 女
</p >
<p>
<label>爱好:</label>
<input type="checkbox" name="like" value="sing" /> 唱歌
<input type="checkbox" name="like" value="run" /> 跑步
<input type="checkbox" name="like" value="swiming" /> 游泳
</p >
<p>
<label>照片:</label>
<input type="file" name="person_pic">
</p >
<p>
<label>个人描述:</label>
<textarea name="about"></textarea>
</p >
<p>
<label>籍贯:</label>
<select name="site">
<option value="0">北京</option>
<option value="1">上海</option>
<option value="2">广州</option>
<option value="3">深圳</option>
</select>
</p >
<p>
<input type="submit" name="" value="提交">
<input type="reset" name="" value="重置">
</p >
</form>
</boby>
</html>