入學(xué)登記
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登記</title>
<style type="text/css">
#text{color: red;}
</style>
</head>
<body>
<table border="1"bgcolor="beige" cellspacing="0" align="center" width="600"height="400">
<tr align="center"><td><h1 style="color: blue;"><em>入學(xué)登記</em></h1></td></tr>
<tr><td>
<br />
<form action="" method="post">
  <font>學(xué)號:</font><input type="text" name="" id="text" value="py1808" />
  <font>性別:</font>
<input type="radio" name="性別" id="text" value="男" checked="checked"/><font>男</font>
<input type="radio" name="性別" id="text" value="女" /><font>女</font><br /> <br />
  <font>姓名:</font><input type="text" name="" id="" value="" />
  <font>班級:</font><select name="班級"id="text">
<option value="">01</option>
<option value="">02</option>
<option value="">03</option>
<option value="">04</option>
<option value="">05</option>
<option value="">06</option>
</select><br /><br />
<font>出生年月:</font><input type="date" name="" id="" value="" /><br /><br />
<font>家庭住址:</font><input maxlength="20" type="text" name="" id="" value="" /><br /><br />
<font>郵政編碼:</font><input type="number" name="" id="" value="" />
  <font>分類:</font><select name="性別"id="text">
<option value="">123</option>
<option value="">456</option>
</select><br /><br />
<font>聯(lián)系電話:</font><input type="text" name="" id="" value="" /><br /><br />
<font>入學(xué)時間:</font><input type="date" name="" id="text" value="" /><br /><br />
  <font>備注:</font>
<textarea name="" rows="5" cols="30"placeholder="123456"></textarea>
</form><br />
    <button>確定</button>
      <button>取消</button>
</td></tr>
</table>
</body>
</html>