Dashboard Temp Share Shortlinks Frames API

HTMLify

library.html
Views: 2 | Author: karbonsites
 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
77
78
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>Quran 50M - Library</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
</head>
<body>
    <header class="app-header">
        <div class="logo">Quran 50M</div>
        <nav class="nav-bar">
            <a href="index.html" class="nav-item">Home</a>
            <a href="library.html" class="nav-item active">Library</a>
            <a href="videos.html" class="nav-item">Videos</a>
            <a href="#contact" class="nav-item">Contact</a>
        </nav>
    </header>

    <main id="app-container">
        <section class="page-section">
            <h1 class="page-title">Digital Bookshelf</h1>
            <p class="page-subtitle">Curated collection of essential Islamic texts available for download.</p>

            <div id="bookshelf-list" class="bookshelf-grid">
                <!-- Book Item 1 -->
                <div class="book-card fade-in"> 
                    <div class="book-cover-mock">Tafsir</div>
                    <div class="book-details">
                        <h4>Tafsir Ibn Kathir (Vol 1)</h4>
                        <p>Classical Exegesis</p>
                        <a href="#" class="btn-download" data-filename="tafsir_v1.pdf">Download PDF</a>
                    </div>
                </div>
                <!-- Book Item 2 -->
                <div class="book-card fade-in"> 
                    <div class="book-cover-mock">Fiqh</div>
                    <div class="book-details">
                        <h4>Al-Fiqh Al-Muyassar</h4>
                        <p>Concise Jurisprudence</p>
                        <a href="#" class="btn-download" data-filename="fiqh_muyassar.pdf">Download PDF</a>
                    </div>
                </div>
                <!-- Book Item 3 -->
                <div class="book-card fade-in"> 
                    <div class="book-cover-mock">Hadith</div>
                    <div class="book-details">
                        <h4>Riyad us Saliheen</h4>
                        <p>Gardens of the Righteous</p>
                        <a href="#" class="btn-download" data-filename="riyad_saliheen.pdf">Download PDF</a>
                    </div>
                </div>
                <!-- Book Item 4 -->
                <div class="book-card fade-in"> 
                    <div class="book-cover-mock">Aqeedah</div>
                    <div class="book-details">
                        <h4>The Creed of Islam</h4>
                        <p>Foundational Beliefs</p>
                        <a href="#" class="btn-download" data-filename="aqeedah.pdf">Download PDF</a>
                    </div>
                </div>
            </div>
        </section>
    </main>

    <footer class="app-footer">
        <p>&copy; 2024 Quran 50M. Premium Islamic Content.</p>
    </footer>

    <script src="script.js"></script>

  <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner">
      <span></span>
      <div>Built with <b>Karbon Sites</b></div>
  </a>
</body>
</html>