-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no" />
<meta name="format-detection" content="telephone=no" />
<meta name="format-detection" content="email=no" />
<meta name="google" content="notranslate">
<meta http-equiv="Cache-Control" content="no-siteapp" />
<title>Go it!</title>
<style>
body {
max-width: 640px;
margin: 0 auto;
padding: 20px 15px;
font-size: 14px;
color: #333;
}
a,
a:visited {
color: #42bd56;
}
a {
display: block;
padding: 8px 0;
}
</style>
</head>
<body>
<a href="http.html">http相关</a>
<a href="cal.html">算法</a>
<a href="EventLoop.html">Event Loop</a>
<a href="per.html">性能优化</a>
<a href="zepto-prototype.html">Zepto原型</a>
<a href="question.html">遇到的问题</a>
<a href="function.html">常见的函数</a>
<a href="inherit.html">继承</a>
<a href="security.html">web安全问题</a>
<a href="css.html">css</a>
<a href="es6.html">es6</a>
<a href="tcp.html">TCP三次握手</a>
<a href="https.html">https相关及运营商劫持</a>
<a href="xhr.html">XMLHttpRequest</a>
<a href="fastclick.html">fastclick原理</a>
<a href="vue.html">Vue相关</a>
<a href="other.html">其它</a>
<a href="https://segmentfault.com/a/1190000016481101">https://segmentfault.com/a/1190000016481101</a>
</body>
</html>