From cbb6f3d3f753a4290474912ec8aa8a12f453e6e2 Mon Sep 17 00:00:00 2001 From: karunya10 Date: Mon, 7 Jul 2025 21:01:29 +0200 Subject: [PATCH] Initial commit for Spotify Clone --- index.html | 87 ++++++++++++++++++++++++++++++++++---- styles/style.css | 107 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 187 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 0697f92fe..9a55cbd63 100644 --- a/index.html +++ b/index.html @@ -3,16 +3,89 @@ + Spotify Clone - + + + - Premium Discover Help Download Music for everyone. Spotify is now free on mobile, tablet and computer. Listen to the - right music, wherever you are. What’s on Spotify? Millions of Songs There are millions of songs on Spotify HD Music - Listen to music as if you were listening live Stream Everywhere Stream music on your smartphone, tablet or computer - It’s as yeezy as Kanye West. Search Know what you want to listen to? Just search and hit play. Browse Check out the - latest charts, brand new releases and great playlists for right now. Discover Enjoy new music every Monday with your - own personal playlist. Or sit back and enjoy Radio. +
+
+ +
+ +
+
+
+

Music for everyone.

+

+ Spotify is now free on mobile, tablet and computer. Listen to the + right music, wherever you are. +

+
+
+
+

What’s on Spotify?

+
+
+ +

Millions of Songs

+

There are millions of songs on Spotify

+
+
+ +

HD Music

+

Listen to music as if you were listening live

+
+
+ +

Stream

+

Everywhere Stream music on your smartphone, tablet or computer

+
+
+
+
+
+

It’s as yeezy as Kanye West.

+
+
+

Search

+

Know what you want to listen to? Just search and hit play.

+
+
+

Browse

+

+ Check out the latest charts, brand new releases and great + playlists for right now. +

+
+
+

Discover

+

+ Enjoy new music every Monday with your own personal playlist. Or + sit back and enjoy Radio. +

+
+
+
+
+ +
+
+ +
+
diff --git a/styles/style.css b/styles/style.css index 55efb32c6..3f53803d6 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,110 @@ Green: #00B172 White: #FFF */ +body { + font-family: "Poppins", sans-serif; +} + +.image-container { + display: flex; + justify-content: space-between; +} +.spotify-logo-container { + text-align: center; + margin: 10px; +} +.spotify-logo-png { + width: 100px; + height: auto; + max-width: 100%; +} +.nav-bar { + display: flex; + justify-content: space-between; + margin: 10px; +} +.nav-list { + display: flex; + justify-content: space-evenly; + gap: 10px; + list-style: none; +} +.music-container { + background-image: url("../images/landing.jpg"); + background-size: cover; + background-position: center; + height: 400px; + width: 100%; + position: relative; + color: white; +} +.music-container-text { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + font-size: 20px; +} +.spotify-container { + text-align: center; + margin: 10px; +} +.options-container { + display: flex; + justify-content: space-evenly; +} +.sections-container { + display: flex; + flex-direction: column; + align-items: center; + width: 30%; + padding: 20px; + box-sizing: border-box; +} +.sections-container > h3 { + color: green; +} +.sections-container > p { + text-align: center; +} +.flex-image { + width: 150px; + height: 125px; +} +.kanye-container { + background-color: rgb(80, 164, 80); + display: flex; + flex-direction: row; + align-content: center; + justify-content: space-evenly; + padding: 50px; + color: white; + height: 600px; +} +.sub-kanye-container h2 { + border-bottom: solid white; + width: fit-content; +} +.sub-kanye-container { + display: flex; + flex-direction: column; +} +.sub-kanye-container h3 { + font-size: 1.5em; +} + +#spotify-white-icon { + margin: auto; +} +#spotify-white-icon img { + width: 100px; + height: 100px; +} +#kanye-img img { + height: 600px; +} +.kanye-text-container { + display: flex; + flex-direction: column; + width: 400px; +}