-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (138 loc) · 3.92 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的网页作业</title>
<link rel="shortcut icon" href="./src/img/head.png" type="image/x-icon">
<link rel="stylesheet" href="./css/clearfix_init.css">
<link rel="stylesheet" href="./css/header_nav_footer.css">
<link rel="stylesheet" href="./css/index_main.css">
<link rel="stylesheet" href="./css/click.css">
</head>
<body>
<!-- head start -->
<header>
<h1>我的网页作业</h1>
</header>
<nav>
<div class="outside">
<div class="logo"></div>
<ul>
<li class="home">
<a href="./index.html">主页</a>
</li>
<li class="work">
<a href="./html/my_home_page.html">我的主页</a>
</li>
<li class="edu">
<a href="#">教育经历</a>
<ul class="down">
<li>
<a href="./html/university.html">大学</a>
</li>
<li>
<a href="./html/senior_school.html">中学</a>
</li>
<li>
<a href="./html/primary_school.html">小学</a>
</li>
</ul>
</li>
<li class="country">
<a href="./html/home_town.html">我的家乡</a>
</li>
<li class="other">
<a href="#">其他</a>
<ul class="down">
<li>
<a href="./html/chikawa.html">Chikawa</a>
</li>
<li>
<a href="./html/reading.html">阅读</a>
</li>
<li>
<a href="./html/profile.html">作业1</a>
</li>
<li>
<a href="./html/classTable.html">课程表</a>
</li>
<li>
<a href="./html/form.html">表单</a>
</li>
</ul>
</li>
</ul>
<input type="text" value="请输入关键词">
<button></button>
</div>
</nav>
<!-- head end -->
<!-- main start -->
<main class="clearfix">
<div>
<p>该网页已托管至Github,可通过:</p>
<p>
<a href="https://abc-01001000.github.io/myLearn_web/" target="_blank">
https://abc-01001000.github.io/myLearn_web/</a>
</p>
<p>
在线访问,或者
<a href="https://github.com/Abc-01001000/myLearn_web" target="_blank">
前往仓库
</a>
。
</p>
</div>
<section class="boll">
<section class="boll-inner"></section>
</section>
<section class="shadow">
<section class="shadow-inner"></section>
</section>
</main>
<!-- main end -->
<!-- footer start -->
<footer>
<div class="outside">
<div class="copyright">
®CopyRight部分
</div>
<div class="links">
<dl>
<dt>测试链接</dt>
<dd>
<a href="https://developer.mozilla.org/zh-CN/" target="_blank">MDN</a>
</dd>
<dd>
<a href="https://www.runoob.com/" target="_blank">菜鸟教程</a>
</dd>
<dd>
<a href="https://www.programmercarl.com/" target="_blank">代码随想录</a>
</dd>
<dd>
<a href="https://www.hello-algo.com/" target="_blank">Hello算法</a>
</dd>
<dd>
<a href="https://oi-wiki.org/" target="_blank">OI WiKi</a>
</dd>
</dl>
</div>
</div>
</footer>
<!-- footer end -->
<section class="loader">
<section class="boll">
<section class="boll-inner"></section>
</section>
<section class="shadow">
<section class="shadow-inner"></section>
</section>
<p>
loading...
</p>
</section>
<script src="./js/load.js"></script>
<script src="./js/click.js"></script>
</body>
</html>