-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 2.37 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>一 个 网 站</title>
<meta charset="utf-8">
<link rel="icon" href="icon.ico" type ="image/x-icon">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
<style>
body {
margin: 0;
}
#title {
position: fixed;
width: 100%;
height: 8%;
background-color: #161616;
border-bottom:3px solid #161616;
}
#items {
padding-top: 46px;
}
#items div {
width: 100%;
height: 200px;
text-align: center;
border: #600f0d 1px solid;
}
</style>
</head>
<body style="background:#202124;">
<div id="content">
<div id="title">
</div>
<div id="items">
</div>
</div>
<!--
<div id="container" style="width:device-width">
<div id="header" style="background-color:#000000;">
<h1 style="margin-bottom:0;">整合</h1>
</div>
-->
</div>
<div style="background-color:#E0E0E0;">
</div>
<a href="https://www.baidu.com/">
<div style="position: relative;top:10px">
<button style="background-color:#303134;color:#FFFFFF;width:100%;height:30px;border-style:none">百度</button>
</div>
</a>
<a href="a/index.html">
<div style="position: relative;top:20px">
<button style="background-color:#303134;color:#FFFFFF;width:100%;height:30px;border-style:none">你被骗了</button>
</div>
</a>
<a href="b/index.html">
<div style="position: relative;top:30px">
<button style="background-color:#303134;color:#FFFFFF;width:100%;height:30px;border-style:none">游戏</button>
</div>
</a>
<a href="https://apple.com.cn/">
<div style="position: relative;top:40px">
<button style="background-color:#303134;color:#FFFFFF;width:100%;height:30px;border-style:none">苹果官网</button>
</div>
</a>
<a href="c/index.html">
<div style="position: relative;top:50px">
<button style="background-color:#303134;color:#FFFFFF;width:100%;height:30px;border-style:none">重复很多遍alert的折磨人的网页</button>
</div>
</a>
</body>
</html>