forked from iChochy/NCE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.html
More file actions
executable file
·79 lines (75 loc) · 2.29 KB
/
Copy pathbook.html
File metadata and controls
executable file
·79 lines (75 loc) · 2.29 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
75
76
77
78
79
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>新概念英语 - 课本导航</title>
<link rel="icon" href="/images/favicon.png" type="image/png">
<link rel="apple-touch-icon" href="/images/favicon.png">
<link rel="stylesheet" href="static/base.css"/>
<link rel="stylesheet" href="static/book.css"/>
<script src="static/book.js"></script>
</head>
<body>
<div class="container">
<a href="index.html">
<div class="header">
<h1>新概念英语</h1>
<p>New Concept English</p>
</div>
</a>
</div>
<!-- (一)课文列表 -->
<div class="book-container" id="book-1">
<div class="book-header">
<img src="images/NCE1.jpg" alt="First Things First"/>
<div class="book-title">
<h3>新概念英语第一册</h3>
<hr/>
<h4>英语初阶</h4>
</div>
</div>
<div class="lessons-grid" id="book-1-lessons"></div>
</div>
<!-- (二)课文列表 -->
<div class="book-container" id="book-2">
<div class="book-header">
<img src="images/NCE2.jpg" alt="Practice and Progress"/>
<div class="book-title">
<h3>新概念英语第二册</h3>
<hr/>
<h4>实践与进步</h4>
</div>
</div>
<div class="lessons-grid" id="book-2-lessons"></div>
</div>
<!-- (三)课文列表 -->
<div class="book-container" id="book-3">
<div class="book-header">
<img src="images/NCE3.jpg" alt="Developing Skills"/>
<div class="book-title">
<h3>新概念英语第三册</h3>
<hr/>
<h4>培养技能</h4>
</div>
</div>
<div class="lessons-grid" id="book-3-lessons"></div>
</div>
<!-- (四)课文列表 -->
<div class="book-container" id="book-4">
<div class="book-header">
<img src="images/NCE4.jpg" alt="Fluency in English"/>
<div class="book-title">
<h3>新概念英语第四册</h3>
<hr/>
<h4>流利英语</h4>
</div>
</div>
<div class="lessons-grid" id="book-4-lessons"></div>
</div>
<footer>
<hr/>
<a target="_blank" href="https://github.com/ichochy/nce">© 2025 iChochy</a>
</footer>
</body>
</html>