-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
51 lines (51 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>网站清单</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
.container {
margin: 50px auto;
max-width: 600px;
padding: 0 20px;
text-align: center;
}
h1 {
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
}
h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.link {
display: block;
font-size: 18px;
margin-bottom: 10px;
text-align: left;
text-decoration: none;
}
.link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>我的学习之旅</h1>
<h2>规划</h2>
<a class="link" href="https://viewer.diagrams.net/?tags=%7B%7D&highlight=0000ff&edit=_blank&layers=1&nav=1&title=video.drawio#Uhttps%3A%2F%2Fraw.githubusercontent.com%2Fxiaoniaoyouhuajiang%2FClassNotebook%2Fmain%2Fvideo.drawio">知识网络图</a>
<a class="link" href="https://viewer.diagrams.net/?tags=%7B%7D&highlight=0000ff&edit=_blank&layers=1&nav=1&page-id=lw2WPv9BKW_zUKk5dRil&title=scheduler.drawio#Uhttps%3A%2F%2Fraw.githubusercontent.com%2Fxiaoniaoyouhuajiang%2FClassNotebook%2Fmain%2Fscheduler.drawio">近期学习规划</a>
<h2>推荐资源</h2>
<a class="link" href="http://api.hwebook.cn/Upload/9612021030000177/20230502213054.html">数学学习笔记</a>
<a class="link" href="http://api.hwebook.cn/Upload/9612021030000177/20230502213737.html">OSTEP学习笔记</a>
</div>
</body>
</html>