HTML 建議登錄界面代碼
<!DOCTYPE html> <html> <head> <title>登錄界面</title> <meta charset="utf-8"> <style> body { font-family: Arial, sans-serif; } h1 { font-size: 28px; margin-bottom: 20px; } form { max-width: 400px; margin: 0 auto; padding: 20px; border: 1px solid #ccc; border-radius: 5px; box-shadow: 0 0 10px rgba(0,0,0,0.2); } input[type="email"], input[type="password"] { display: block; width: 100%; padding: 10px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; font-size: 16px; font-family: Arial, sans-serif; } input[type="submit"] { background-color: #4CAF50; border: none; color: #fff; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-size: 18px; font-family: Arial, sans-serif; } input[type="submit"]:hover { background-color: #3e8e41; } </style> </head> <body> <h1>登錄</h1> <form action="#" method="POST"> <label>郵箱:</label> <input type="email" name="email" required> <label>密碼:</label> <input type="password" name="password" required> <input type="submit" name="submit" value="登錄"> </form> </body> </html>
上面的代碼實現了一個簡單的登錄界面。在 HTML 中使用了 form 元素和 input 元素來實現表單,其中 input 元素的 type 屬性分別設置為 email 和 password,分別用于輸入郵箱和密碼。同時,還使用了 CSS 樣式來美化界面,讓登錄界面看起來更加友好和美觀。
上一篇python 數字開平方
下一篇python 調用密碼庫