-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (48 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome to Windy Valley!</title>
<style>
body {
background-color: #ffffee;
}
h1 {
color: blue;
}
footer {
position: fixed;
display: block;
bottom: 0;
}
header {
text-align: center;
}
main {
text-align: center;
}
#mail {
color: greenyellow;
text-align: center;
}
#bloglist {
text-align: left;
padding-left: 20%;
}
</style>
</head>
<body>
<header>
<h1>Welcome to windy valley!</h1>
<br />
</header>
<main>
<ul id="bloglist">
<li><a href="Linux添加路径到PATH环境变量.html">Linux添加路径到PATH环境变量</a></li>
</ul>
</main>
<footer>
<a id='mail' target="_blank" href="http://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&email=OE9RVlxBTllUVF1BS3hJSRZbV1U"><center><img src="http://rescdn.qqmail.com/zh_CN/htmledition/images/function/qm_open/ico_mailme_02.png" /></center></a>
</footer>
</body>
</html>