做一个酷炫的登录html页面
时间: 2023-10-08 15:13:01 浏览: 178
好的,我可以为您提供一些可定制的模板,您可以根据需要进行修改。以下是示例代码:
```
<!DOCTYPE html>
<html>
<head>
<title>登录页面</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-image: url("background.jpg");
background-size: cover;
font-family: Arial, sans-serif;
}
form {
background-color: rgba(255, 255, 255, 0.7);
width: 400px;
margin: 0 auto;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
input[type="text"], input[type="password"] {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: none;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
font-size: 16px;
color: #333;
}
input[type="submit"] {
display: block;
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: #fff;
font-size: 16px;
font-weight: bold;
border: none;
border-radius: 5px;
cursor: pointer;
}
h1 {
text-align: center;
font-size: 36px;
font-weight: bold;
margin-bottom: 30px;
color: #333;
text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<form>
<h1>欢迎登录</h1>
<input type="text" name="username" placeholder="用户名" required>
<input type="password" name="password" placeholder="密码" required>
<input type="submit" value="登录">
</form>
</body>
</html>
```
您可以将其中的背景图像和颜色进行替换和修改以达到酷炫的效果。希望这能帮到您!
阅读全文