帮我写美化的html登陆页面
时间: 2023-10-24 13:07:57 浏览: 72
漂亮的html登陆界面
5星 · 资源好评率100%
当然可以,以下是一个简单的美化html登陆页面的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<style type="text/css">
/* 布局样式 */
body {
background-color: #f2f2f2;
font-family: arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
margin: 100px auto;
max-width: 400px;
padding: 20px;
}
h1 {
color: #333;
font-size: 32px;
margin-bottom: 20px;
text-align: center;
}
input[type=text], input[type=password] {
background-color: #f9f9f9;
border: none;
border-radius: 3px;
padding: 10px;
width: 100%;
}
input[type=submit] {
background-color: #3b5998;
border: none;
border-radius: 3px;
color: #fff;
cursor: pointer;
font-size: 16px;
padding: 10px;
width: 100%;
transition: background-color 0.2s;
}
input[type=submit]:hover {
background-color: #2c4372;
transition: background-color 0.2s;
}
/* 响应式样式 */
@media only screen and (max-width: 480px) {
.container {
margin: 50px auto;
max-width: 80%;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Login</h1>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username">
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<input type="submit" value="Login">
</form>
</div>
</body>
</html>
```
这段代码用到了 CSS 的布局和样式技巧,使得页面看起来不仅美观而且用户体验更佳。你可以根据自己的需求进行修改和扩展。
阅读全文