From 2f229c3fa573ccbb33cd18f898f5969cd119ed95 Mon Sep 17 00:00:00 2001 From: Kanak sharma Date: Tue, 3 Dec 2024 17:34:38 +0530 Subject: [PATCH] done --- index.html | 60 ++++++++++++++++--- styles/style.css | 148 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 201 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 0697f92..24be7d4 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,60 @@ 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 55efb32..01d473d 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,151 @@ Green: #00B172 White: #FFF */ + +.nav { + position: fixed; + top: 0; + left: 0; + width: 100%; + display: flex; + align-items: center; + justify-content: space-between; + padding: 10px 20px; + background-color: #FFF; + color: 1A1A1A; + } + + .logo { + height: 40px; + } + + .nav-options { + list-style: none; + display: flex; + gap: 15px; + margin: 0; + padding: 0; + margin-right: 30px; + } + + .nav-options li { + cursor: pointer; + } + + +.landing-page { + margin-top: 60px; + height: calc(100vh - 60px); + background-image: url('../images/landing.jpg'); + background-size: cover; + background-position: center; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + color: #FFF; + text-align: center; +} + +.landing-page h1 { + font-size: 3rem; + margin-bottom: 20px; +} + +.landing-page p { + font-size: 1.5rem; + max-width: 600px; + line-height: 1.8; +} + +.what { + text-align: center; + margin: 50px 0; + padding: 20px; +} + +.what p { + font-size: 2rem; + margin-bottom: 30px; + color: #1A1A1A; +} + +.main-box { + display: flex; + justify-content: space-around; + gap: 20px; + flex-wrap: wrap; +} + +.boxes { + background-color: #fff; + border-radius: 10px; + padding: 20px; + text-align: center; + width: 20%; +} + + +.boxes img { + width: 60px; + height: auto; + margin-bottom: 10px; +} + +.boxes h3 { + font-size: 1.5rem; + margin-bottom: 10px; + color: #00B172; +} + +.boxes p { + font-size: 1rem; + color: #1A1A1A; + line-height: 1.6; +} + +@media (max-width: 768px) { + .boxes { + width: 80%; + margin: 10px auto; + } +} +.artist { + background-color: #00B172; + color: #fff; + margin-bottom: 30px; + background-image: url('../images/spotify-icon-white.png'); + background-repeat: no-repeat; + background-position: center; + background-size: 10%; + display: flex; + align-items: center; + justify-content: center; +} + + +.description{ + display: flex; + +} + +.info{ + margin-inline: 5%; + padding: 5%; +} + +.info p{ + max-width: 30%; + font-size: 1.3rem; +} + +.info h1{ + text-decoration: underline; +} + +.image img{ + height: 70%; + width: 70%; + margin: 10%; + padding: 8%; +} \ No newline at end of file