forked from DDU1222/node-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
需要用到页面可参考.html
86 lines (73 loc) · 1.89 KB
/
需要用到页面可参考.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
<!DOCTYPE html>
<html>
<head>
<title>首页</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
padding: 0;
margin: 0;
}
body {
font-size: 14px;
color: #000;
background: #fff;
}
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: none;
}
.header {
width: 100%;
background-color: #48a63e;
}
.header-box {
height: 88px;
line-height: 88px;
color: #fff;
font-size: 26px;
font-weight: 300;
letter-spacing: 2px;
}
.header-box>.logo {
letter-spacing: 0;
font-size: 20px;
}
.wraper {
width: 1200px;
margin: 0 auto;
}
.container {
min-height: 500px;
padding: 80px 0;
}
.footer {
background: #262a30;
padding: 50px 0;
border-top: 1px solid #ddd;
color: #999;
font-size: 16px;
}
.footer-box {}
</style>
</head>
<body>
<header class="header">
<div class="header-box wraper">Node实战教程 | <span class="logo">© iKcamp</span></div>
</header>
<div class="container wraper">
<h1>基本样式不动,可在中间增加内容,保持沪江风格</h1>
</div>
<footer class="footer">
<div class="footer-box wraper">
<p>教程源码地址</p>
<p><a href="https://github.com/ikcamp">https://github.com/ikcamp</a></p>
<br>
<p>iKcamp由沪江Web前端团队中热爱原创和翻译的小伙伴发起,成立于2016年7月,"iK"代表布兰登·艾克(JavaScript之父)。 追随JavaScript这门语言所秉持的精神,崇尚开放和自由的我们一同工作、分享、创作,等候更多有趣跳动的灵魂。</p>
</div>
</footer>
</body>
</html>