表單標簽input的代碼
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action='#'? method='get'>
<label for='username'>用戶名:</lable><input? name='username'? placeholder='請輸入用戶名' id='username'><br>
<label for='password'>密碼:</lable><input? type='password'? name='password'? placeholder='請輸入密碼' id='password'><br>
性別:男<input? type='radio'? name='gender' value='male' checked='checked'>女<input? type='radio'? name='gender' value='female'><br>
<br>
愛好:<input? type='checkbox'? name='hobby' value='shopping' checked='checked'>逛街<input? type='checkbox'? name='hobby' value='eat'>吃飯
<input? type='checkbox'? name='span'? checked='checked'>桑拿
<br>
<input type='submit' value='登錄'>
</form>
</body>
</html>
標簽: