用HTML5寫一個簡單的注冊界面


<!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
用戶名
密碼
性別
從事行業
自我介紹
自我介紹:


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM