用html语言创建一个带CSS的登陆界面
时间: 2024-12-16 07:29:15 浏览: 2
在HTML中创建一个简单的登录界面通常包括HTML结构、表单元素以及引入CSS来美化样式。下面是一个基础示例:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>登录页面</title>
<link rel="stylesheet" type="text/css" href="styles.css"> <!-- 这里假设styles.css文件位于同一目录 -->
</head>
<body>
<div class="login-container">
<h2>登录</h2>
<form id="login-form">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" required><br>
<label for="password">密码:</label>
<input type="password" id="password" name="password" required><br>
<button type="submit">登录</button>
<a href="#" class="forgot-password">忘记密码?</a>
</form>
</div>
</body>
</html>
```
接下来是对应的`styles.css`部分,用于设置基本样式:
```css
.login-container {
width: 300px;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
background-color: #f7f7f7;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"],
input[type="password"] {
width: 100%;
height: 40px;
padding: 10px;
font-size: 16px;
border: 1px solid #ddd;
}
button {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
width: 100%;
padding: 10px 0;
font-size: 16px;
}
.forgot-password {
display: inline-block;
text-decoration: underline;
}
```
阅读全文