创建简单的登录页面代码示例
HTML 结构
我们需要编写 HTML 代码,以构建登录表单的整体结构。下面是一个简单的 HTML 示例:
```html
用户登录
```
CSS 样式
接下来,我们为这个登录页面添加一些基本的 CSS 样式,使其美观整洁。下面是相应的 CSS 示例:
```css
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.login-container {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba
(
0,
0,
0, 0.1);
}
h2 {
margin-bottom: 20px;
}
label {
display: block;
margin: 10px 0 5px;
}
input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
width: 100%;
padding: 10px;
background-color: #5cb85c;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #4cae4c;
}
```
通过上述的 HTML 和 CSS 代码,你可以轻松地创建一个简单且实用的登录页面。这种结构与样式可以根据需求进一步扩展和修改,以满足特定的设计需求。
本文我们展示了如何使用 HTML 和 CSS 创建一个基本的登录页面,包括 HTML 结构和 CSS 样式的详细示例,帮助开发者快速搭建页面。