用html来写一个登陆页面,并且用css样式使其好看自然
时间: 2023-02-06 19:16:11 浏览: 128
LandingPage:我做的第一个项目
好的,这是用 HTML 和 CSS 来创建登录页面的一种方式:
HTML 部分:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>登录页面</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="login-container">
<form>
<h1>登录</h1>
<label for="username">用户名:</label>
<input type="text" id="username" name="username">
<br>
<label for="password">密码:</label>
<input type="password" id="password" name="password">
<br>
<input type="submit" value="登录">
</form>
</div>
</body>
</html>
```
CSS 部分:
```css
body {
font-family: sans-serif;
}
.login-container {
width: 400px;
margin: 0 auto;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
}
form {
display: flex;
flex-direction: column;
}
label {
font-weight: bold;
margin-bottom: 10px;
}
input[type="text"],
input[type="password"] {
border: 1px solid #ccc;
border-radius: 5px;
padding: 8px;
margin-bottom: 20px;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
```
这样就可以创建一个简单的登录页面了。您可以在 CSS 中添加更多的样式来使页面看起来更好看和自然。例如,您可以添加背景颜色、字体颜色和大小、行高等等。
希望这对您有帮助!
阅读全文