利用html和css写一个优美的登陆界面
时间: 2023-07-16 21:14:04 浏览: 99
好的,下面是一个简单的登陆界面的 HTML 和 CSS 代码,你可以根据需求进行修改和美化:
```
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
.container {
margin: 100px auto;
width: 400px;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px #888;
}
h1 {
text-align: center;
color: #555;
}
label {
display: block;
margin-bottom: 10px;
color: #555;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 20px;
box-sizing: border-box;
}
button[type="submit"] {
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-top: 10px;
}
button[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<div class="container">
<h1>Login</h1>
<form>
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Enter your username">
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter your password">
<button type="submit">Login</button>
</form>
</div>
</body>
</html>
```
这个登陆界面包含一个容器,一个标题,一个表单和一个提交按钮。CSS 样式中定义了容器的样式、标题的样式、标签和输入框的样式以及提交按钮的样式。你可以根据需要自定义它们的颜色、字体、大小等属性。
阅读全文