个人欢迎各位复制粘贴
源代码展示
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>用户登入</title>
<link rel="icon" href="">
<style>
*{
padding: 0;
margin: 0;
}
body{
background-image: none;
padding-top: 8%;
}
.login{
margin-right: 10px;
margin: 0 auto; /*使表单居中 */
width: 300px;
font-family: "宋体";
font-size: 20px;
padding: 10px; /*设置对象四边的内部边距*/
border: solid 1px ; /*添加表单边框的样式和粗细 */
border-radius: 10px; /*边框圆角*/
box-shadow: 0px 0px 8px #706f6f; /* 盒子阴影 */
background-color: #fff;
text-align: center;
}
h1{
font-family: 华文行楷;
text-align: center;
}
.login input{
margin-top: 20px;
}
input[type=submit]{
height: 40px;
width: 70px;
}
input[type=button]{
height: 40px;
width: 70px;
}
</style>
</head>
<body>
<div class="login">
<h1>用户登入</h1>
<hr><br>
<form action="" method="post">
账号:<input type="text" class="username">
密码:<input type="password" class="password">
<input type="submit" value="登入" class="btns">
<input type="button" value="注册" class="btns">
</form>
</div>
</body>
</html>
效果图展示