写一段html网站登录页面,并进行美化
时间: 2023-02-19 08:51:37 浏览: 123
一个html登录页面
这是一个简单的HTML登录页面代码:
```
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<style>
/* Add some styling to make the page look better */
body {
font-family: Arial, sans-serif;
background-color: #F2F2F2;
text-align: center;
}
.container {
margin-top: 50px;
display: inline-block;
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0px 0px 10px #BBB;
}
h1 {
margin-bottom: 30px;
}
input[type="text"], input[type="password"] {
padding: 10px;
font-size: 16px;
margin-bottom: 20px;
width: 300px;
border-radius: 5px;
border: 1px solid #BBB;
}
input[type="submit"] {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border-radius: 5px;
border: none;
font-size: 16px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #3E8E41;
}
</style>
</head>
<body>
<div class="container">
<h1>Login</h1>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username">
<br>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<br><br>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>
```
请注意,这个代码仅仅是给出了一个登录页面的外观,实际的登录功能需要使用服务端语言(如PHP,Node.js)实现。
阅读全文