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: 500px;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
border-radius: 5px;
}
.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: 3px;
}
.login-container input[type="submit"] {
width: 100%;
padding: 10px;
background-color: #5cb85c;
color: white;
border: none;
border-radius: 3px;
cursor: pointer;
font-size: 16px;
}
.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样式来创建一个现代化的登录界面。它有一个居中的登录容器,包含一个标题、输入框、提交按钮和一个忘记密码的链接。这个界面简洁而又美观,适合用在个人项目或者小型网站上。
评论已关闭