Dashboard Temp Share Shortlinks Frames API

HTMLify

index.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
79
80
81
<!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 - Home</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 active">Home</a>
            <a href="library.html" class="nav-item">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">

        <!-- Daily Verse Section -->
        <section id="daily-verse" class="card daily-verse-section">
            <h2 class="section-title">Daily Verse</h2>
            <div class="verse-content">
                <p class="arabic-text">بِسْمِ اللَّهِ الرَّحْمَٰنِ الرَّحِيمِ</p>
                <p class="translation">"Indeed, Allah loves those who constantly turn to Him in repentance and He loves those who purify themselves."</p>
                <p class="reference">— Surah Al-Baqarah, Verse 222</p>
            </div>
            <button class="btn-share">Share Verse</button>
        </section>

        <!-- Featured Video Section -->
        <section id="featured-video" class="card featured-video-section">
            <h2 class="section-title">Featured Stream</h2>
            <div class="video-player-mock">
                <div class="video-placeholder">
                    <svg class="play-icon" viewBox="0 0 24 24"><path d="M6 19V5l14 7-14 7z"/></svg>
                    <p>Tap to view featured lecture</p>
                </div>
            </div>
            <div class="video-info">
                <h3>Understanding Tawhid (Part 3)</h3>
                <p>Sheikh Abdulaziz Al-Fawzan | 45 min</p>
            </div>
        </section>

        <!-- Quick Links/Bento Style -->
        <section id="quick-links" class="quick-links-grid">
            <a href="library.html" class="bento-item large-item">
                <span class="icon">&#x1F4D6;</span>
                <h3>Digital Bookshelf</h3>
                <p>Explore thousands of downloadable PDFs.</p>
            </a>
            <a href="videos.html" class="bento-item small-item">
                <span class="icon">&#x25B6;&#xFE0F;</span>
                <h3>Video Library</h3>
                <p>Stream lectures.</p>
            </a>
            <a href="#" class="bento-item small-item">
                <span class="icon">&#x1F50D;</span>
                <h3>Search</h3>
                <p>Find specific content.</p>
            </a>
        </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>