-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsg1.html
53 lines (51 loc) · 1.12 KB
/
sg1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.clearfix::after{
content:"";
display: block;
width: 0;
height: 0;
font-size:0;
clear:both;
}
.top{
width: 1000px;
margin: 0 auto;
}
.top .logo{
width: 193px;
height: 40px;
background: url('http://dl.pinyin.sogou.com/index/header/logo.png') no-repeat;
float: left;
}
.top .search{
width: 329px;
height: 36px;
background:url('//zptczbj.github.io/tupian/ssk.gif') no-repeat;
float: right;
margin-top: 20px;
}
.banner{
width: 100%;
height: 400px;
margin: 0 auto;
background: url('http://dl.pinyin.sogou.com/index/2.0/banner_8.0.2.jpg')center no-repeat #fafcfe;
}
</style>
</head>
<body>
<div class="top clearfix">
<h1 class="logo"></h1>
<div class="search"></div>
</div>
<div class="banner"></div>
<div class="top clearfix">
<div class="left"></div>
<div class="right"></div>
</div>
</body>
</html>