-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatch.html
More file actions
72 lines (66 loc) · 2.71 KB
/
watch.html
File metadata and controls
72 lines (66 loc) · 2.71 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Watch Now | CHERRI</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navigation -->
<nav class="site-nav">
<a class="nav-logo" href="index.html">CHERRI</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="listen.html">Listen</a></li>
<!-- <li><a href="watch.html" class="active">Watch Now</a></li> -->
<li><a href="shows.html">Shows</a></li>
<!-- <li><a href="#" target="_blank">Shop</a></li> -->
</ul>
<button class="nav-hamburger" id="navHamburger" aria-label="Menu">
<span></span>
<span></span>
<span></span>
</button>
</nav>
<div class="mobile-nav" id="mobileNav">
<a href="index.html">Home</a>
<a href="listen.html">Listen</a>
<!-- <a href="watch.html">Watch Now</a> -->
<a href="shows.html">Shows</a>
<!-- <a href="#" target="_blank">Shop</a> -->
</div>
<!-- Featured Video Player -->
<section class="section" style="padding-top: 160px;">
<h2 class="section-title">Watch Now</h2>
<div class="featured-video">
<iframe id="featured-player" src="" title="Featured Video"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</div>
<!-- Video Grid -->
<div id="videoLoader" class="loader">
<div class="loader-dot"></div>
<div class="loader-dot"></div>
<div class="loader-dot"></div>
</div>
<div class="video-grid" id="videoGrid"></div>
</section>
<!-- Footer -->
<footer class="site-footer">
<div class="footer-social">
<a href="https://www.instagram.com/frozencherrii/" target="_blank" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://www.tiktok.com/@frozencherri?is_from_webapp=1&sender_device=pc" target="_blank" aria-label="TikTok"><i class="fab fa-tiktok"></i></a>
<a href="https://www.youtube.com/@CHERRImusicofficial" target="_blank" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
<a href="https://open.spotify.com/artist/0mDwdgreP6g5GfIZf0KYL7?si=VYFbIjVWT3KN21sfSlJcxA" target="_blank" aria-label="Spotify"><i class="fab fa-spotify"></i></a>
</div>
<p class="footer-text">© 2026 CHERRI</p>
<div class="footer-email">
<a href="mailto:cherribooking@gmail.com">cherribooking@gmail.com</a>
</div>
</footer>
<script src="js/main.js"></script>
<script src="js/videos.js"></script>
</body>
</html>