HTML基礎:用表單寫一個簡易登陸頁面

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <meta charset="utf-8">
 5 <title>HTML基礎:用表單編寫登陸頁面</title>
 6 </head>
 7 <body>
 8  <form action="#" method="get">
 9     <label>用戶登陸</label><br><br>
10     <input type="text" placeholder="請輸入用戶名" name="username"><br><br>
11     <input type="password" placeholder="請輸入密碼" name="password"><br><br>
12     <input type="checkbox">記住我<br><br>
13     <button style="width:172px;height:23px;">登陸</button>
14  </form>
15 </body>
16 </html>

用瀏覽器打開以下html

相關文章
相關標籤/搜索