forked from iChochy/NCE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlesson.html
More file actions
executable file
·43 lines (42 loc) · 1.27 KB
/
Copy pathlesson.html
File metadata and controls
executable file
·43 lines (42 loc) · 1.27 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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/lesson.css">
<script src="static/lesson.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">
<a id="book" href="book.html">
<header class="book-header">
<img id="book-img" src="images/NCE1.jpg" alt="First Things First">
<div class="book-title">
<h3 id="book-title"></h3>
<hr>
<h4 id="lesson-title"></h4>
<p id="lesson-lrc-by"></p>
</div>
</header>
</a>
<main id="content"></main>
</div>
<footer>
<audio id="player" controls="controls"></audio>
<hr>
<a target="_blank" href="https://github.com/ichochy/nce">© 2025 iChochy</a>
</footer>
</body>
</html>