-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.html
More file actions
82 lines (78 loc) · 2.32 KB
/
book.html
File metadata and controls
82 lines (78 loc) · 2.32 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
<!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/book.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3321669220169470" crossorigin="anonymous"></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>
<p>英语初阶</p>
</div>
</div>
<hr>
<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>
<p>实践与进步</p>
</div>
</div>
<hr>
<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>
<p>培养技能</p>
</div>
</div>
<hr>
<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>
<p>流利英语</p>
</div>
</div>
<hr>
<div class="lessons-grid" id="book-4-lessons"></div>
</div>
<footer>
<hr>
<p>© 2025 <a href="https://nce.dfyx.xyz/">Anonymous</a>.</p>
</footer>
</body>
</html>