<!DOCTYPE html>
<html>
<head>
<title>練習4</title>
<meta charset="UTF-8"/>
</head>
<body>
<table border="1">
<tr>
<th>用戶名</th>
<td><form><input type="text" name="username"/></form></td>
</tr>
<tr>
<th>密碼</th>
<td><form><input type="password" name="pwd"/></form></td>
</tr>
<tr>
<th>性別</th>
<td><form>男<input type="radio" name="xb"value="0"/> 女<input type="radio" name="xb"value="1"/></form></td>
</tr>
<tr>
<th>從事行業</th>
<td><form><select name="sc" size="1"/>
<option value="0" selected="selected">計算機</option>
<option value="1">其他</option>
</select>
</form></td>
</tr>
<tr>
<th>自我介紹</th>
<td><form>自我介紹:<br><textarea name="zhaoshui"cols="30"row="60"></textarea></form></td>
</tr>
<tr>
<th><button>注冊</button></th>
<td><button>清除</button></td>
</tr>
</table>
</body>
</html>
練習4
用戶名 |
|
密碼 |
|
性別 |
|
從事行業 |
|
自我介紹 |
|
|
|