写一段美观的登陆H5页面
时间: 2023-10-20 22:07:15 浏览: 64
以下是一个简单的登陆 H5 页面示例,包含了基本的表单输入和提交功能,并使用了一些 CSS 样式来美化页面:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登陆页面</title>
<style>
body {
background-color: #f1f1f1;
font-family: Arial, sans-serif;
font-size: 14px;
}
.container {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
margin: 50px auto;
max-width: 400px;
padding: 20px;
}
h1 {
font-size: 24px;
margin-bottom: 20px;
text-align: center;
}
input[type="text"], input[type="password"] {
background-color: #f5f5f5;
border: none;
border-radius: 5px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
display: block;
font-size: 16px;
margin-bottom: 20px;
padding: 10px;
width: 100%;
}
input[type="submit"] {
background-color: #4CAF50;
border: none;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
color: #fff;
cursor: pointer;
display: block;
font-size: 16px;
margin-top: 20px;
padding: 10px;
width: 100%;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<div class="container">
<h1>登陆</h1>
<form action="" method="post">
<label for="username">用户名</label>
<input type="text" id="username" name="username" required>
<label for="password">密码</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="登陆">
</form>
</div>
</body>
</html>
```
这个页面使用了简单的 HTML 和 CSS 来创建一个美观的登陆页面。在浏览器中打开它,你会看到一个包含用户名和密码输入框的表单,以及一个提交按钮。当用户输入用户名和密码并点击提交按钮时,该表单将向服务器发送 POST 请求,以便进行身份验证或其他相关操作。
阅读全文