-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkaibanxinxi.html
128 lines (120 loc) · 3.65 KB
/
kaibanxinxi.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>开班信息表</title>
<style type="text/css">
.title_s{
margin:14px 0;
font: bold 12px "微软雅黑"
}
li{
list-style:none;
margin-bottom:11px;
}
a{
text-decoration:none;
color:black
}
a:hover{
color:red;
text-decoration:underline;
}
*{
margin:0;
padding:0;
}
body{
font-size:12px;
}
.outer{
width:300px;
height:473px;
margin:50px auto;
}
.content .right{
float:right;
}
.content .red{
font-weight:bold;
color:red;
}
.title{
border-top:solid silver 2px;
height:36px;
background-color:#f5f5f5;
line-height:36px;
padding:0px 16px 0px 12px;
}
.title a{
float:right;
color:red;
text-decoration:none;
}
.title h2{
font-weight:normal;
}
.content{
border: solid 1px #f4f4f4;
padding:0px 22px 0px 16px;
}
.content ul{
border-bottom:dashed 1px #f3f3f3;
}
.content .no_border{
border-bottom:none;
}
#special{
text-decoration:underline;
}
</style>
</head>
<body>
<div class="outer">
<div class="title">
<a href="#" id="special">16年面授开班计划</a>
<h2>近期开班</h2>
</div>
<div class="content">
<p class="title_s">JavaEE+云计算-全程就业班</p>
<ul>
<li>
<a href="#">开班时间: <span class="red">2016-04-27</span> </a>
<a href="#" class="red right">预约报名</a>
</li>
<li>
<a href="#">开班时间: <span class="red">2016-04-27</span> </a>
<a href="#" class="red right">无座,名额爆满</a>
</li>
<li><a href="#">开班时间: <span>2016-04-27</span> </a>
<a href="#" class="right">开班盛况</a></li>
<li><a href="#">开班时间: <span>2016-04-27</span> </a>
<a href="#" class="right">开班盛况</a></li>
<li><a href="#">开班时间: <span>2016-04-27</span> </a>
<a href="#" class="right">开班盛况</a></li>
</ul>
<p class="title_s">Android+人工智能-全成就业班</p>
<ul>
<li>
<a href="#">开班时间: <span class="red">2016-04-27</span> </a>
<a href="#" class="red right">预约报名</a>
</li>
<li><a href="#">开班时间: <span>2016-04-27</span> </a>
<a href="#" class="right">开班盛况</a></li>
<li><a href="#">开班时间: <span>2016-04-27</span> </a>
<a href="#" class="right">开班盛况</a></li>
<li><a href="#">开班时间: <span>2016-04-27</span> </a>
<a href="#" class="right">开班盛况</a></li>
</ul><p class="title_s">前端+HTML5-全程就业班</p>
<ul class="no_border">
<li>
<a href="#">开班时间: <span class="red">2016-04-27</span> </a>
<a href="#" class="red right">预约报名</a>
</li>
<li><a href="#">开班时间: <span>2016-04-27</span> </a>
<a href="#" class="right">开班盛况</a></li>
</ul>
</div>
</div>
</body>
</html>