forked from hoothin/NCE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.html
More file actions
127 lines (122 loc) · 4.64 KB
/
Copy pathbook.html
File metadata and controls
127 lines (122 loc) · 4.64 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
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
<!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="stylesheet" href="static/base.css">
<link rel="stylesheet" href="static/book.css">
<script src="static/utils.js"></script>
<script src="static/book.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3321669220169470" crossorigin="anonymous"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5282BCFM9W"></script>
<script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag('js',new Date());gtag('config','G-5282BCFM9W');</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">
<button id="prev-book" class="nav-btn" title="上一本">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</button>
<img src="images/NCE1.jpg" alt="First Things First">
<div class="book-title">
<h3>新概念英语第一册</h3>
<hr>
<p>英语初阶</p>
</div>
<button id="next-book" class="nav-btn" title="下一本">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
</div>
<hr>
<div class="lessons-grid" id="book-1-lessons"></div>
</div>
<!-- (二)课文列表 -->
<div class="book-container" id="book-2">
<div class="book-header">
<button id="prev-book" class="nav-btn" title="上一本">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</button>
<img src="images/NCE2.jpg" alt="Practice and Progress">
<div class="book-title">
<h3>新概念英语第二册</h3>
<hr>
<p>实践与进步</p>
</div>
<button id="next-book" class="nav-btn" title="下一本">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
</div>
<hr>
<div class="lessons-grid" id="book-2-lessons"></div>
</div>
<!-- (三)课文列表 -->
<div class="book-container" id="book-3">
<div class="book-header">
<button id="prev-book" class="nav-btn" title="上一本">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</button>
<img src="images/NCE3.jpg" alt="Developing Skills">
<div class="book-title">
<h3>新概念英语第三册</h3>
<hr>
<p>培养技能</p>
</div>
<button id="next-book" class="nav-btn" title="下一本">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
</div>
<hr>
<div class="lessons-grid" id="book-3-lessons"></div>
</div>
<!-- (四)课文列表 -->
<div class="book-container" id="book-4">
<div class="book-header">
<button id="prev-book" class="nav-btn" title="上一册">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</button>
<img src="images/NCE4.jpg" alt="Fluency in English">
<div class="book-title">
<h3>新概念英语第四册</h3>
<hr>
<p>流利英语</p>
</div>
<button id="next-book" class="nav-btn" title="下一册">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
</div>
<hr>
<div class="lessons-grid" id="book-4-lessons"></div>
</div>
<div id="custom-books-root"></div>
<footer>
<hr>
<p>© 2025 <a target="_blank" href="https://www.hoothin.com">hoothin</a>.</p>
</footer>
</body>
</html>