-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnote.html
40 lines (37 loc) · 1.71 KB
/
note.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>笔记</title>
<link rel="stylesheet" type="text/css" href="main.css" media="screen and (min-width: 481px)">
<link rel="stylesheet" type="text/css" href="main-mobile.css" media="screen and (max-width: 480px)">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">主页</a></li>
<li><a href="about.html">关于</a></li>
<li class="selected">笔记</li>
<li><a href="science.html">杂记</a></li>
<li><a href="lab.html">实验</a></li>
</ul>
</nav>
<h1 class="center">请选择一本书</h1>
<p class="center">
<a href="book/csapp.html" title="csapp启动!"><img class="book" src="pic/csapp1.jpg" alt=""></a>
<a href="book/ostep.html" title="ostep启动!"><img class="book" src="pic/ostep1.jpg" alt=""></a>
<a href="book/cod.html" title="计算机组成与设计启动!"><img class="book" src="pic/cod.jpg" alt=""></a>
<a href="book/mos.html" title="mos启动!"><img class="book" src="pic/mos1.jpg" alt=""></a>
<a href="book/CS231n.html" title="看封进!"><img class="book" src="pic/cs231n.jpg" alt=""></a>
<a href="book/GAMES101.html" title="GAMES101!"><img class="book" src="pic/games101.png" alt=""></a>
<a href="book/network.html" title="自顶向下!"><img class="book" src="pic/network.jpg" alt=""></a>
</p>
<footer>
© 2024, Gu Wei
<br>
All trademarks and registered trademarks appearing on
this site are the property of their respective owners. ( :
</footer>
</body>
</html>