请用html语言帮我写一个登入界面
时间: 2023-12-19 19:03:59 浏览: 64
使用html语言设计登陆界面
好的,以下是一个简单的HTML登入界面示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>登入界面</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
h1 {
text-align: center;
margin-top: 50px;
}
form {
width: 300px;
margin: 50px auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
input[type="text"], input[type="password"] {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: none;
font-size: 16px;
box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}
input[type="submit"] {
display: block;
margin: auto;
padding: 10px 20px;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<h1>登入</h1>
<form 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>
</body>
</html>
```
使用该代码,您可以在浏览器中打开它,显示一个简单的登入页面。
阅读全文