-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (83 loc) · 1.78 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<meta charset="utf-8">
<title>Rainy101112</title>
<style>
.topbar {
background-color: #87CEEB;
position: fixed;
top: 0;
bottom: 92%;
left: 0;
right: 0;
display: flex;
}
.topbar_bt {
padding: 0px;
font-size: 20px;
color: #008B8B;
}
.sidebar {
background-color: #f1f1f1;
position: fixed;
top: 8%;
left: 80%;
bottom: 0;
right: 0;
}
.sidebar_bt {
padding: 10px;
}
.bottombar {
background-color: #FFFAF0;
position: fixed;
top: 95%;
bottom: 0;
left: 0;
right: 0;
display: flex;
}
.bottombar_bt {
padding: 0px;
font-size: 10px;
color: #2F4F4F;
}
</style>
</head>
<body>
<div class="topbar">
<p class="topbar_bt">Rainy101112 Website-Home</p>
</div>
<div class="sidebar">
<p class="sidebar_bt">安庆三体入口:</p>
<ul>
<li><a href="http://rainy101112.github.io/aqst.github.io/">安外ETO组织论坛</a></li>
</ul>
<p class="sidebar_bt">相关链接:</p>
<ul>
<li><a href="http://www.aqwgy.net/">安庆市外国语学校</a></li>
</ul>
<p class="sidebar_bt">关于:</p>
<ul>
<li><a href="/rainyos.html">关于RainyOS</a></li>
</ul>
<p class="sidebar_bt">站点地图</p>
<ul>
<li><a href="/sitemap.html">站点地图入口</a></li>
</ul>
</div>
<div class="bottombar">
<p class="bottombar_bt">Site by Github.io</p>
</div>
<h2>你干嘛~哈哈哟~</h2>
<h1>Hello </h1>
<script>
//JavaScript
document.write("这是我的个人网页!\r\n");
document.write("\r\n本网站的仓库已在github上开放");
</script>
<h3><a href="http://github.com/Rainy101112/Rainy101112.github.io/">Published on github.com</a></h3>
</body>
</html>