Dashboard Temp Share Shortlinks Frames API

HTMLify

videos.html
Views: 3 | 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
82
83
84
85
86
87
88
89
90
91
92
93
<!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 - Videos</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">Library</a>
            <a href="videos.html" class="nav-item active">Videos</a>
            <a href="#contact" class="nav-item">Contact</a>
        </nav>
    </header>

    <main id="app-container">
        <section class="page-section">
            <h1 class="page-title">Video Streaming Hall</h1>
            <p class="page-subtitle">High-definition lectures, organized by category.</p>

            <!-- Video Player Mockup (Feature Rich) -->
            <div class="card video-player-feature fade-in">
                <div class="video-player-large">
                    <div class="video-screen">
                        <svg class="play-icon large" viewBox="0 0 24 24"><path d="M6 19V5l14 7-14 7z"/></svg>
                    </div>
                    <div class="player-controls">
                        <div class="progress-bar-container"><div class="progress-bar" style="width: 30%;"></div></div>
                        <div class="controls-bar">
                            <span>0:15 / 0:50</span>
                            <div class="settings-icons">
                                <span title="Quality">HD</span>
                                <span title="Speed">1.5x</span>
                                <span title="Subtitles">CC</span>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="video-details">
                    <h2>The Golden Age of Islamic Science</h2>
                    <p class="channel">Hosted by Dr. Omar Hassan</p>
                    <p>An in-depth look at the scientific contributions during the Islamic Golden Age. Includes interactive timeline features.</p>
                    <button class="btn-primary">View Playlist</button>
                </div>
            </div>

            <h2 class="section-title">Recommended Streams</h2>
            <div class="video-list-grid">
                <!-- Video Item 1 -->
                <div class="video-thumb fade-in">
                    <div class="thumb-mock"></div>
                    <div class="thumb-info">
                        <h4>Sermons on Patience</h4>
                        <p>22 min • Sheikh Ahmed</p>
                    </div>
                </div>
                 <!-- Video Item 2 -->
                 <div class="video-thumb fade-in">
                    <div class="thumb-mock"></div>
                    <div class="thumb-info">
                        <h4>Quranic Arabic Basics</h4>
                        <p>55 min • Language Course</p>
                    </div>
                </div>
                 <!-- Video Item 3 -->
                 <div class="video-thumb fade-in">
                    <div class="thumb-mock"></div>
                    <div class="thumb-info">
                        <h4>Ethics in Finance</h4>
                        <p>38 min • Dr. Fatima</p>
                    </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>