forked from iChochy/NCE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (74 loc) · 2.67 KB
/
index.html
File metadata and controls
76 lines (74 loc) · 2.67 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
<!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/index.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>新概念英语</h1>
<p>New Concept English</p>
</div>
</div>
<div class="book-container">
<div class="book-header">
<h3>全四册课文导航</h3>
</div>
<hr>
<div class="books-nav">
<a href="book.html#NCE1">
<div class="book-card" data-book="1">
<img src="images/NCE1.jpg" alt="First Things First">
<div class="book-info">
<div class="book-number">第一册</div>
<div class="book-title">First Things First</div>
<div class="book-subtitle">英语初阶</div>
<div class="lesson-count">144课</div>
</div>
</div>
</a>
<a href="book.html#NCE2">
<div class="book-card" data-book="2">
<img src="images/NCE2.jpg" alt="Practice and Progress">
<div class="book-info">
<div class="book-number">第二册</div>
<div class="book-title">Practice and Progress</div>
<div class="book-subtitle">实践与进步</div>
<div class="lesson-count">96课</div>
</div>
</div>
</a>
<a href="book.html#NCE3">
<div class="book-card" data-book="3">
<img src="images/NCE3.jpg" alt="Developing Skills">
<div class="book-info">
<div class="book-number">第三册</div>
<div class="book-title">Developing Skills</div>
<div class="book-subtitle">培养技能</div>
<div class="lesson-count">60课</div>
</div>
</div>
</a>
<a href="book.html#NCE4">
<div class="book-card" data-book="4">
<img src="images/NCE4.jpg" alt="Fluency in English">
<div class="book-info">
<div class="book-number">第四册</div>
<div class="book-title">Fluency in English</div>
<div class="book-subtitle">流利英语</div>
<div class="lesson-count">48课</div>
</div>
</div>
</a>
</div>
</div>
<footer>
<hr>
<p>© 2025 <a href="https://ichochy.com">iChochy</a>.</p>
</footer>
</body>
</html>