-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapters.html
56 lines (49 loc) · 2.09 KB
/
chapters.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
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>פרקים | מלחמת הניצוצות</title>
<link rel="stylesheet" href="styles/styles.css">
<script src="scripts/menu.js" defer></script>
<script src="scripts/footer.js" defer></script>
</head>
<body>
<header class="header">
<h1 class="title">📖 פרקי הסדרה</h1>
<p>המסע המופלא של מלחמת הניצוצות</p>
</header>
<div class="container">
<section class="chapters-grid">
<div class="season-card">
<h2>עונה 1: התעוררות הניצוצות</h2>
<div class="chapter-list">
<div class="chapter">
<h3>פרק 1: הניצוץ הראשון</h3>
<p>גילוי הכוחות הראשונים והתעוררות המאבק</p>
<a href="script/chapters/1/1.html" class="chapter-link">קרא עכשיו ➜</a>
</div>
<div class="chapter">
<h3>פרק 2: צללים מתעוררים</h3>
<p>כוחות האופל מתחילים להתגלות</p>
<a href="script/chapters/1/2.html" class="chapter-link">קרא עכשיו ➜</a>
</div>
</div>
</div>
<div class="season-card">
<h2>עונה 2: מלחמת הצללים</h2>
<div class="chapter-list">
<div class="chapter">
<h3>פרק 1: קרב ראשון</h3>
<p>העימות הראשון בין כוחות האור והחושך</p>
<a href="script/chapters/2/1.html" class="chapter-link">קרא עכשיו ➜</a>
</div>
</div>
</div>
</section>
</div>
<footer>
<p>כל הזכויות שמורות © 2024 🌟</p>
</footer>
</body>
</html>