简易大气好看后台登录页面纯静态HTML源码分享
以下是一个简易大气好看的后台登录页面的HTML代码示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>后台登录</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: linear-gradient(to right, #f3e7e9, #f3e7e9);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.login-container {
background-color: #fff;
padding: 40px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
}
h2 {
color: #333;
text-transform: uppercase;
letter-spacing: 1px;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 15px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="submit"] {
width: 100%;
padding: 15px;
background-color: #5cb85c;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
input[type="submit"]:hover {
background-color: #4cae4c;
}
</style>
</head>
<body>
<div class="login-container">
<h2>后台登录</h2>
<form action="">
<input type="text" placeholder="用户名" required>
<input type="password" placeholder="密码" required>
<input type="submit" value="登录">
</form>
</div>
</body>
</html>
这段代码展示了一个简单而又高级的登录页面,使用了CSS3的渐变背景和盒阴影来增强页面的视觉效果。同时,使用了简洁的HTML结构和CSS样式,提升了用户的视觉体验。
评论已关闭