帮我做出里面登入页面,html喝css
时间: 2024-12-20 20:12:59 浏览: 11
好的,根据《实验二CSS样式2024.doc》中的要求,我将为你提供一个简单的QQ邮箱登录界面的HTML和CSS代码示例。这个示例将包括基本的HTML结构和CSS样式。
### HTML (index.html)
```html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QQ邮箱登录</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="login-container">
<h1>QQ邮箱登录</h1>
<form action="#" method="post">
<div class="input-group">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-group">
<label for="password">密码:</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit">登录</button>
</form>
</div>
</body>
</html>
```
### CSS (styles.css)
```css
/* 基本重置 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-container {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
text-align: center;
}
h1 {
margin-bottom: 20px;
color: #333;
}
.input-group {
margin-bottom: 15px;
text-align: left;
}
.input-group label {
display: block;
margin-bottom: 5px;
color: #666;
}
.input-group input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 3px;
}
button {
width: 100%;
padding: 10px;
background-color: #1da1f2;
color: #fff;
border: none;
border-radius: 3px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #1c91e6;
}
```
### 说明
1. **HTML部分**:
- 创建了一个简单的表单,包含用户名和密码输入框以及一个登录按钮。
- 使用了`<div>`标签来组织表单元素。
- 表单的`action`属性设置为`#`,实际使用时应替换为服务器端处理登录请求的URL。
2. **CSS部分**:
- 重置了所有元素的默认边距和内边距。
- 设置了页面的背景颜色、字体和居中显示。
- 定义了登录容器的样式,包括背景色、内边距、圆角和阴影。
- 为输入框和按钮设置了样式,使其看起来更美观。
- 使用了伪类`hover`来实现按钮的悬停效果。
希望这些代码能帮助你完成实验任务。如果有任何问题或需要进一步的帮助,请随时告诉我!
阅读全文