-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlisten.html
More file actions
84 lines (79 loc) · 3.2 KB
/
listen.html
File metadata and controls
84 lines (79 loc) · 3.2 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
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Listen | 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" class="active">Listen</a></li>
<!-- <li><a href="watch.html">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>
<!-- Platform Links -->
<section class="section" style="padding-top: 160px;">
<h2 class="section-title">Find Me On</h2>
<div class="platform-grid">
<a class="platform-link" href="https://music.apple.com/us/artist/cherri/1619855765" target="_blank">
<i class="fab fa-apple"></i>
Apple Music
</a>
<a class="platform-link" href="https://open.spotify.com/artist/0mDwdgreP6g5GfIZf0KYL7?si=VYFbIjVWT3KN21sfSlJcxA" target="_blank">
<i class="fab fa-spotify"></i>
Spotify
</a>
<a class="platform-link" href="https://music.youtube.com/channel/UCXrZwg5OpwW63JBO55UWxBw?si=iyDRUlhED9Se8cz2" target="_blank">
<i class="fab fa-youtube"></i>
YouTube Music
</a>
<a class="platform-link" href="https://soundcloud.com" target="_blank">
<i class="fab fa-soundcloud"></i>
SoundCloud
</a>
<a class="platform-link" href="https://music.amazon.com" target="_blank">
<i class="fab fa-amazon"></i>
Amazon
</a>
<a class="platform-link" href="https://tidal.com" target="_blank">
<i class="fas fa-music"></i>
Tidal
</a>
</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>
</body>
</html>