diff --git a/index.html b/index.html index 0697f92..284e09e 100644 --- a/index.html +++ b/index.html @@ -3,16 +3,55 @@ - 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.

+
+ + +
+
+

Millions of Songs

+

No credit card needed.

+
+
+

Easy Listening

+

Stream instantly.

+
+
+

Make it Yours

+

Create your own playlists.

+
+
+ + +
+
+

Get Spotify Free

+

Listen to millions of songs for free.

+
+ Spotify App + +
diff --git a/styles/style.css b/styles/style.css index 55efb32..b28ceb4 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,8 +1,63 @@ -/* -Colors: +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + text-align: center; +} -Text: 1A1A1A -Green: #00B172 -White: #FFF +.navbar { + position: fixed; + top: 0; + width: 100%; + display: flex; + justify-content: space-between; + padding: 10px 20px; + background-color: black; +} -*/ +.navbar .logo { + width: 100px; +} + +.navbar ul { + list-style: none; + display: flex; + gap: 20px; +} + +.navbar ul li a { + color: white; + text-decoration: none; +} + +.hero { + background-image: url("../images/spotify-background.jpg"); + height: 100vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + color: white; +} + +.features { + display: flex; + justify-content: space-around; + padding: 50px; +} + +.green-section { + background-color: #1db954; + color: white; + display: flex; + align-items: center; + padding: 50px; + position: relative; +} + +.spotify-logo { + position: absolute; + top: 20px; + left: 20px; + width: 50px; +}