diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..f673a71b7 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5502 +} \ No newline at end of file diff --git a/index.html b/index.html index 0697f92fe..b3f075669 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,82 @@ 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?

+ +
+
+ Music Icon +

Millions of Songs

+

There are millions of songs on Spotify

+
+ +
+ HD Music Icon +

HD Music

+

Listen to music as if you were listening live

+
+ +
+ Devices Icon +

Stream Everywhere

+

Stream music on your smartphone, tablet or computer

+
+
+
+ + diff --git a/styles/style.css b/styles/style.css index 55efb32c6..824834f41 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,182 @@ Green: #00B172 White: #FFF */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: "Arial", "Helvetica", sans-serif; + color: #1a1a1a; + margin: 0; + padding: 0; +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; + padding: 20px 40px; + position: fixed; + top: 0; + left: 0; + right: 0; + background-color: #fff; + z-index: 1000; +} + +.logo img { + cursor: pointer; + height: 40px; +} + +.nav-links { + cursor: pointer; + display: flex; + list-style: none; + gap: 30px; +} + +.hero { + background-image: url("../images/landing.jpg"); + background-size: cover; + background-position: center; + height: 600px; + display: flex; + align-items: center; + justify-content: center; + text-align: center; + color: #fff; + margin-top: 80px; +} + +.hero-content h1 { + font-size: 60px; + margin-bottom: 20px; + font-weight: bold; +} + +.hero-content p { + font-size: 20px; + margin: 5px 0; +} + +.container { + max-width: 1200px; + margin: 0 auto; + padding: 0 20px; +} + +.sub-container { + padding: 60px 40px; + text-align: center; + background-color: #fff; +} + +.sub-container h2 { + font-size: 36px; + margin-bottom: 10px; + text-decoration: underline; + text-decoration-color: #00B172; + text-decoration-thickness: 3px; + text-underline-offset: 8px; +} + +.features { + display: flex; + justify-content: center; + gap: 30px; + margin-top: 40px; + flex-wrap: wrap; +} + +.feature-card { + padding: 40px 30px; + width: 300px; + text-align: center; +} + +.feature-icon { + height: 80px; + margin-bottom: 20px; +} + +.feature-card h3 { + color: #00B172; + font-size: 22px; + margin-bottom: 15px; +} + +.feature-card p { + color: #434343; + font-size: 16px; +} + +.popular-section { + background-color: #00b172; + padding: 60px 40px; + color: white; +} + +.popular-content h2 { + font-size: 36px; + margin-bottom: 40px; + text-decoration: underline; + text-underline-offset: 8px; +} + +.popular-features { + display: flex; + justify-content: space-between; + align-items: center; +} + +.popular-text { + flex: 1; +} + +.popular-text h3 { + font-size: 24px; + margin-bottom: 10px; + margin-top: 30px; +} + +.popular-text h3:first-child { + margin-top: 0; +} + +.popular-text p { + font-size: 16px; + line-height: 1.6; + margin-bottom: 20px; +} + +.popular-image { + flex: 1; + position: relative; + display: flex; + align-items: center; + justify-content: center; + min-height: 400px; +} + +.spotify-icon { + height: 150px; + position: absolute; + top: 50%; + transform: translateY(-50%); +} + +.app-screenshot { + height: 400px; + border-radius: 10px; + margin-left: 100px; +} + +.popular-app-image { + flex: 1; + display: flex; + justify-content: flex-end; +}