-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter.html
45 lines (41 loc) · 1.53 KB
/
chapter.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chapter Reader</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<a href="index.html" class="home-button">Home</a>
<h1 id="chapter-title">Chapter</h1>
<button id="dark-mode-toggle">🌙 Dark Mode</button>
</header>
<!-- Top Navigation -->
<div class="navigation">
<button id="prev-chapter">Previous Chapter</button>
<select id="chapter-select"></select>
<button id="next-chapter">Next Chapter</button>
</div>
<!-- Manga Pages -->
<div id="pages"></div>
<!-- Bottom Navigation -->
<div class="navigation">
<button id="prev-chapter-bottom">Previous Chapter</button>
<select id="chapter-select-bottom"></select>
<button id="next-chapter-bottom">Next Chapter</button>
</div>
<!-- Donation and Discord Buttons -->
<div class="donation-discord">
<div>
<a href="https://www.paypal.com/donate" target="_blank">Donate</a>
<span class="donation-text">Please consider donating to help keep the site up</span>
</div>
<a href="https://discord.gg/your-invite-link" target="_blank">Join Our Discord</a>
</div>
</div>
<script src="chapter-script.js"></script>
</body>
</html>