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
30 lines (28 loc) · 714 Bytes
/
Copy pathlesson.html
File metadata and controls
30 lines (28 loc) · 714 Bytes
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>新概念英语 - 课文点读</title>
<link rel="stylesheet" href="lesson.css">
<script src="lesson.js"></script>
</head>
<body>
<a id = "book" href="book.html" >
<header>
<img id = "book-img" alt="" src=""/>
<div>
<h1 id = "book-title"></h1>
<hr>
<p id = "lesson-title"></p>
</div>
</header>
</a>
<main id="content"></main>
<footer>
<audio id="player" controls="controls"></audio>
<hr>
<p>© 2025 <a href="https://ichochy.com">iChochy</a>.</p>
</footer>
</body>
</html>