-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.html
55 lines (41 loc) · 1.09 KB
/
1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>电商</title>
<style>
.1{
width: 400px;
height: 300px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -200px;
margin-top: -150px;
background-color: #8888CC;
}
li{
float:left;
width:100px;
list-style-type:none;
color:#000;
background-color:#fff;
}
</style>
</head>
<body>
<div class="1">
<ul>
<li>我也不知道为什么要做这个东西</li>
<li>肯定是有原因的</li>
<li>暂时没有想到罢了</li>
<li>其实是想要记录一些好用的插件</li>
<li>虽然很多都是不知道怎么用的哈哈</li>
</ul>
</div>
<div>
<a href="http://socket.io/">http://socket.io/使用于快速通讯</a><br>
<a href="http://stuk.github.io/jszip/">http://stuk.github.io/jszip/使用于打包html大文件</a><br>
</div>
</body>
</html>