用html+css+js写一个登陆界面
时间: 2023-09-11 21:06:52 浏览: 73
通过html+css+js制作一个简单的登录页面
好的,下面是一个简单的登录界面的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
form {
background-color: #ffffff;
padding: 20px;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
width: 300px;
margin: 50px auto;
}
input[type=text], input[type=password] {
width: 100%;
padding: 10px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<form>
<h2>Login</h2>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
</body>
</html>
```
这段代码会创建一个白色的登录框,包含两个输入框和一个提交按钮。你可以在 `input` 标签的 `type` 属性中指定不同的输入类型(例如 `email`、 `number` 等等)。CSS 样式可以根据自己的需要进行修改和调整。
阅读全文