?? ??? ??:HTML(?? ??)? ?? ?? ? ??
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>表單</title> <style> p{ font-size:16px; font-weight:bold; } input{ height:8px; width:128px; margin-top:0px; border: 1px solid #ccc; padding:10px; } [name="but"]{ margin-top:15px; width:150px; height:30px; background:#FC0; color:#FFF; } </style> </head> <body> <form method="post" action="#"> <p>用戶名</p> <input type="text" name="user" placeholder="請輸入用戶名" > <p>密碼</p> <input type="password" name="pass" placeholder="請輸入密碼" ><br> <input type="button" name="but" value="提交"> </form> </body> </html>
2019-06-150個贊