-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsongs.html
More file actions
70 lines (70 loc) · 1.86 KB
/
songs.html
File metadata and controls
70 lines (70 loc) · 1.86 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
<!-- Songs Page (songs.html) -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ecoblox - Songs</title>
<style>
body {
font-family: 'Poppins', sans-serif;
background-color: #0d0d0d;
color: white;
text-align: center;
padding: 20px;
}
h1 {
font-size: 3rem;
margin-bottom: 20px;
}
.song {
margin: 20px 0;
padding: 10px;
border-radius: 10px;
background-color: #1a1a1a;
transition: transform 0.3s;
}
.song:hover {
transform: scale(1.05);
}
.platforms a {
margin: 5px;
padding: 10px 15px;
background: linear-gradient(45deg, #1DB954, #17a74a);
border-radius: 20px;
text-decoration: none;
color: black;
font-weight: bold;
transition: transform 0.3s;
}
.platforms a:hover {
transform: scale(1.1);
}
</style>
</head>
<body>
<h1>Ecoblox - Songs</h1>
<div class="song">
<h2>Shadows</h2>
<p>Released: December 23, 2024</p>
<div class="platforms">
<a href="#">Spotify</a>
<a href="#">Apple Music</a>
<a href="#">Amazon Music</a>
<a href="#">YouTube</a>
</div>
</div>
<div class="song">
<h2>White Lines</h2>
<p>Released: August 28, 2024</p>
<div class="platforms">
<a href="#">Spotify</a>
<a href="#">Apple Music</a>
<a href="#">Amazon Music</a>
<a href="#">YouTube</a>
</div>
</div>
<br>
<a href="index.html" class="button">Back to Home</a>
</body>
</html>