請建立一份HTML文件,檔名為login.html
。請用VS Code編輯。
請在文件中建立如下的<form>
會員登入表單。
規格說明:
兩個欄位字數輸入限制皆為10個字。
會員帳號<input>
加上name
屬性,值為account
會員密碼<input>
加上name
屬性,值為password
提示:
HTML <form> 表單元素
解答:
login.html
<html>
<head>
</head>
<body>
<form>
<label>
會員帳號:<input type="text" name="account" maxlength="10" placeholder="e.g.phoebelin">
</label>
<label>
會員密碼:<input type="password" name="password" maxlength="10" placeholder="英文大小寫加數字">
</label>
<input type="submit" value="送出">
</form>
</body>
</html>
沒有留言:
張貼留言