一个招生简章页面的简单制作
2018-09-11 本文已影响0人
田小田txt
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>开班信息</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
body{
background-color: black;
}
.total{
width: 310px;
height: 480px;
background-color: white;
float: left;
margin: 100px 350px;
}
.head{
width: 300px;
height: 40px;
background-color: #f5f5f5;
margin: 0px auto;
}
.greenline{
width: 300px;
height: 9%;
background-color: #019e8b;
margin: 5px auto;
}
.word1{
font-size: 16px;
float: left;
margin-left: 17px;
}
.word2{
font-size: 14px;
float: right;
margin-right: 24px;
color: red;
display:block;
}
.head a:hover{
background-color: #ccddee;
color:black;
}
.bodyline{
width: 298px;
height: 430px;
float: left;
margin-left: 5px;
border: 1px #deddd9 solid;
}
.bodyline #title1{
font:14px '宋体';
margin-left: 20px;
margin-top: 30px;
font-weight: bold;
color: #000084 ;
}
.bodyline #title2{
font:14px '宋体';
margin-left: 20px;
margin-top: 150px;
font-weight: bold;
color: #000084 ;
}
.bodyline #title3{
font:14px '宋体';
margin-left: 20px;
margin-top: 130px;
font-weight: bold;
color: #000084 ;
}
p,li{
font:12px '微软雅黑';
}
.t1 li,.t2 li,.t3 li{
display: block;
line-height: 19px;
list-style:none;
text-align: left;
}
.t4 li,.t5 li,.t6 li{
display: block;
line-height: 19px;
list-style: none;
text-align: right;
}
.t1,.t2,.t3{
margin-top: 20px;
margin-left:20px;
float:left;
}
.t4,.t5,.t6{
margin-top: 20px;
margin-right:20px;
float:right;
}
.t1 a,.t2 a,.t3 a,.t4 a,.t5 a,.t6 a,.t7 a:hover{
color:red ;
text-decoration: none;
}
</style>
</head>
<body>
<div class="total">
<div class="head">
<div class="greenline"></div>
<spane class='word1'>近期开班</spane>
<a class='word2' href="#">18年面授开班计划</a>
</div>
<div class="bodyline">
<p id="title1">人工智能+Python-高薪就业班</p>
<ul class="t1">
<li>开班时间:<a href="#">2018-04-26</a></li>
<li>开班时间:<a href="#">2018-03-23</a></li>
<li>开班时间:2018-01-23</li>
<li>开班时间:2017-12-20</li>
<li>开班时间:2017-11-18</li>
</ul>
<ul class="t4">
<li><a href="#">预约报名</a></li>
<li><a href="#">无座,名额爆满</a></li>
<li>开班盛况</li>
<li>开班盛况</li>
<li>开班盛况</li>
</ul>
<p id="title2">Android开发+测试-高薪就业班</p>
<ul class="t2">
<li>开班时间:<a href="#">2018-04-26</a></li>
<li>开班时间:2018-03-23</li>
<li>开班时间:2018-01-23</li>
<li>开班时间:2017-12-20</li>
</ul>
<ul class="t5">
<li><a href="#">预约报名</a></li>
<li>开班盛况</li>
<li>开班盛况</li>
<li>开班盛况</li>
</ul>
<p id="title3">大数据软件开发-青芒工作室</p>
<ul class="t3">
<li>开班时间:<a href="#">2018-04-26</a></li>
<li>开班时间:2018-03-23</li>
</ul>
<ul class="t6">
<li><a href="#">预约报名</a></li>
<li>开班盛况</li>
</ul>
</div>
</div>
</body>
</html>
