-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (74 loc) · 2.88 KB
/
index.html
File metadata and controls
74 lines (74 loc) · 2.88 KB
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
<!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="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="chapter-box" onclick="location.href='section.html?chapter=1'">
<h2>第一章</h2>
<p>计算机组成与体系结构</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=2'">
<h2>第二章</h2>
<p>操作系统原理</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=3'">
<h2>第三章</h2>
<p>数据库系统</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=4'">
<h2>第四章</h2>
<p>计算机网络</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=5'">
<h2>第五章</h2>
<p>系统安全分析与设计</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=6'">
<h2>第六章</h2>
<p>数据结构与算法基础</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=7'">
<h2>第七章</h2>
<p>程序设计语言与语言程序处理程序基础</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=8'">
<h2>第八章</h2>
<p>法律法规(知识产权)</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=9'">
<h2>第九章</h2>
<p>标准化基础知识</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=10'">
<h2>第十章</h2>
<p>多媒体基础</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=11'">
<h2>第十一章</h2>
<p>软件工程(上)</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=12'">
<h2>第十二章</h2>
<p>数据结构及算法应用</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=13'">
<h2>第十三章</h2>
<p>面向对象程序设计</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=14'">
<h2>第十四章</h2>
<p>软件维护基础</p>
</div>
<div class="chapter-box" onclick="location.href='section.html?chapter=15'">
<h2>第十五章</h2>
<p>软件项目管理</p>
</div>
<!-- 可以继续添加更多章节 -->
</div>
</body>
</html>