给我写一个登入得到表单,用css写的好看一点
时间: 2023-08-04 22:34:28 浏览: 87
简单美观的CSS3登录表单
好的,以下是一个简单的登陆表单的HTML代码,并使用CSS进行美化:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login Form</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
h1 {
text-align: center;
margin-top: 50px;
color: #333;
}
form {
background-color: #fff;
width: 400px;
margin: 0 auto;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
font-size: 16px;
}
input[type="submit"]:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h1>Login Form</h1>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Your username..">
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Your password..">
<input type="submit" value="Submit">
</form>
</body>
</html>
```
这个表单具有以下特征:
1. 表单位于页面中央,具有圆角和阴影效果。
2. 表单包含一个用户名和密码输入框,以及一个提交按钮。
3. 输入框具有默认的提示文本。
4. 提交按钮具有鼠标悬停效果。
你可以根据自己的需求进行调整和修改。
阅读全文