必威体育Betway必威体育官网
当前位置:首页 > IT技术

HTML(css+div)登录界面

时间:2019-09-27 17:15:27来源:IT技术作者:seo实验室小编阅读:52次「手机版」
 

登陆界面

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>login</title>
<style type="text/css">
*{
	margin: 0;
	padding: 0;
}
#wrap {
	height: 719px;
	width: 100;
	background-image: url(4.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}
#head {
	height: 120px;
	width: 100;
	background-color: #66CCCC;
	text-align: center;
	position: relative;
}
#foot {
	width: 100;
	height: 126px;
	background-color: #CC9933;
	position: relative;
}
#wrap .logGet {
	height: 408px;
	width: 368px;  
	position: absolute;
	background-color: #FFFFFF;
	top: 20%;
	right: 15%;
}
.logC a button {
	width: 100%;
	height: 45px;
	background-color: #ee7700;
	border: none;
	color: white;
	font-size: 18px;
}
.logGet .logD.logDtip .p1 {
	display: inline-block;
	font-size: 28px;
	margin-top: 30px;
	width: 86%;
}
#wrap .logGet .logD.logDtip {
	width: 86%;
	border-bottom: 1px solid #ee7700;
	margin-bottom: 60px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
}
.logGet .lgD img {
	position: absolute;
	top: 12px;
	left: 8px;
}
.logGet .lgD input {
	width: 100%;
	height: 42px;
	text-indent: 2.5rem;
}
#wrap .logGet .lgD {
	width: 86%;
	position: relative;
	margin-bottom: 30px;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}
#wrap .logGet .logC {
	width: 86%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}


.title {
	font-family: "宋体";
	color: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);  /* 使用css3的transform来实现 */
	font-size: 36px;
	height: 40px;
	width: 30%;
}

.copyright {
	font-family: "宋体";
	color: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);  /* 使用css3的transform来实现 */
	height: 60px;
	width: 40%;
	text-align:center;
}
	

#foot .copyright .img {
	width: 100%;
	height: 24px;
	position: relative;
}
.copyright .img .icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 22px;
	vertical-align: middle;
	background-image: url(%E7%94%B5%E5%AD%90%E9%82%AE%E4%BB%B6.png);
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: 5px;
}
	
.copyright .img .icon1 {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 22px;
	vertical-align: middle;
	background-image: url(%E5%9C%B0%E5%9D%80.png);
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: 5px;
}
.copyright .img .icon2 {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 22px;
	vertical-align: middle;
	background-image: url(%E8%81%94%E7%B3%BB%E6%96%B9%E5%BC%8F.png);
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: 5px;
}
#foot .copyright p {
	height: 24px;
	width: 100%;
}
</style>
</head>

<body>
<p class="header" id="head">
  <p class="title">企业人事管理系统</p>
	
</p>
	
<p class="wrap" id="wrap">
	<p class="logGet">
			<!-- 头部提示信息 -->
			<p class="logD logDtip">
				<p class="p1">登录</p>
			</p>
			<!-- 输入框 -->
			<p class="lgD">
				<img src="img/logName.png" width="20" height="20" alt=""/>
				<input type="text"
					placeholder="输入用户名" />
			</p>
			<p class="lgD">
				<img src="img/logPwd.png" width="20" height="20" alt=""/>
				<input type="text"
					placeholder="输入用户密码" />
			</p>
			<p class="logC">
				<a href="index.html" target="_self"><button>登 录</button></a>
			</p>
		</p>
</p>
	
<p class="footer" id="foot">
  <p class="copyright">
    <p>Copyright © 2018 Qunar.com Inc. All Rights Reserved.</p>
    <p class="img">
		<i class="icon"></i><span>联系邮箱[email protected]</span>
	</p>
	
	<p class="img">
		<i class="icon1"></i><span>联系地址:合肥工业大学</span>
	</p>
	  
	<p class="img">
	  <i class="icon2"></i><span>联系电话:18355042634</span>
	</p>


  </p>
	
</p>
	
	
</body>
</html>

相关阅读

试着编写了一下战网的登录页面,刚学会css和html5

试着编写了一下战网的登录页面,刚学会css和html5 暴雷游戏通行证登录

windows利用默认帐号自动登录(转)

windows利用默认帐号自动登录 1、控制面板-用户帐户-更改用户的登陆或注销的方式,把使用欢迎屏幕前打勾 。 2、建立了一个新的非受

JSP--(应用session对象模拟用户登录)

创建index.jsp文件,在其中添加用于收集用户登录信息的表单及表单元素:<%@ page language="java" contentType="text/html; charset=

js中innerHTML与innerText的用法与区别

js中innerHTML与innerText的用法与区别用法:<p id="test">  <span style="color:red">test1</span> test2</p>在JS中可以使用

document.getelementbyid().value与innerHTML使用场景

首先getElementById()可以获取到页面上一个有id的元素,进而可以访问该元素的对应属性值,比如说value。<input type="text" id="txt"

分享到:

栏目导航

推荐阅读

热门阅读