html好看的登录界面2(十四种风格登录源码)_html登录页面
以下是一个使用HTML和CSS创建的简单而又好看的登录界面示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
.login-container {
width: 100%;
margin: 0 auto;
margin-top: 100px;
max-width: 400px;
background-color: #fff;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.login-container h2 {
text-align: center;
margin-bottom: 20px;
}
.login-container input[type="text"],
.login-container input[type="password"] {
width: calc(100% - 20px);
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 4px;
}
.login-container input[type="submit"] {
width: 100%;
padding: 10px;
background-color: #5cb85c;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.login-container input[type="submit"]:hover {
background-color: #4cae4c;
}
.login-container a {
text-decoration: none;
color: #5cb85c;
display: block;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="login-container">
<h2>Login to Your Account</h2>
<form action="">
<input type="text" placeholder="Username" required>
<input type="password" placeholder="Password" required>
<input type="submit" value="Login">
</form>
<a href="#">Forgot Password?</a>
</div>
</body>
</html>
这个示例使用了简单的HTML结构和CSS样式来创建一个清新的登录界面。它包括一个表单,用户可以在其中输入用户名和密码,还有一个提交按钮。此外,还提供了一个遗忘密码的链接。这个界面设计简洁,易于使用,并且使用了简单的CSS来增强其视觉吸引力。
评论已关闭