基本信息
源码名称:css简单的登录页面
源码大小:1.90KB
文件格式:.html
开发语言:CSS
更新时间:2019-06-17
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link rel="icon" href="img/huawei.ico" />
<style type="text/css">* {
margin: 0;
padding: 0;
}
bady {
font-size: 18px;
color: #282828;
}
a {
color: #282828;
}
.title {
text-align: center;
margin: 40px 0;
}
.con {
width: 363px;
margin: 0 auto;
box-shadow: 2px 1px 30px rgba(0, 0, 0, 0.18);
padding: 40px 100px;
border-radius: 5px;
}
.con div {
margin-top: 25px;
}
.con h1 {
font-size: 50px;
}
em {
color: red;
}
input {
width: 100%;
height: 50px;
border: 1px solid #d4d4d4;
border-radius: 5px;
font-size: 15px;
padding-left: 15px;
}
input:focus {
border: 1px solid#15b0eb;
}
button {
width: 100%;
height: 50px;
border: 1px solid #d4d4d4;
border-radius: 5px;
font-size: 15px;
padding-left: 15px;
background-color: #f66f6a;
color: white;
padding-left: ;
}
button:hover {
background-color: #a54b4a;
}
.zc .wxin {
text-align: center;
}
.wx {
display: inline-block;
width: 38px;
height: 37px;
background: url(img/sprite.png)no-repeat -40px -250px;
}
.hp {
display: inline-block;
width: 24px;
height: 24px;
background: url(sprite.png)no-repeat -0px -288px;
vertical-align: bottom;
}</style>
</head>
<body>
<div class="box">
<div class="title">
</div>
<div class="con">
<h1>登录</h1>
<div >
<p>账号/邮箱<em>*</em></p>
<input placeholder="请输入账号/邮箱" />
</div>
<div >
<p>密码<em>*</em></p>
<input placeholder="请输入密码" />
<p><a>忘记密码</a></p>
</div>
<div><button>登录</button></div>
<div class="zc"><a href="">立即注册</a></div>
<div class="wxin"><p>其他登录方式</p></div>
<span class="wx"><a href=""></a></span>
<span class="wxin"><a href=""></a></span>
<div><a class="hp" href=""></a><a href="">获得其他帮助</a></div>
</div>
</body>
</html>