diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..2ba986f6f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/index.html b/index.html index 0697f92fe..2da459d57 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,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?

+ +
+ +
+ Music Icon +

Millions of Songs

+

There are millions of songs on Spotify

+
+ +
+ High Quality Icon +

HD Music

+

Listen to music as if you were listening live

+
+ +
+ Devices Icon +

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.

+
+
+ +
+ Spotify App Screenshot + +
+ +
+ diff --git a/styles/style.css b/styles/style.css index 55efb32c6..aae57fe9c 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,8 +1,141 @@ /* Colors: - Text: 1A1A1A Green: #00B172 White: #FFF - */ + +/* RESET */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: Arial, sans-serif; + color: #1A1A1A; +} + +/* NAVBAR */ +.navbar { + position: fixed; + top: 0; + width: 100%; + background: white; + display: flex; + justify-content: space-between; + padding: 15px 30px; + align-items: center; + z-index: 100; +} + +.logo { + width: 130px; +} + +.nav-links { + list-style: none; + display: flex; + gap: 25px; +} + +.nav-links a { + color: #1A1A1A; + text-decoration: none; + font-weight: bold; +} + +/* HERO SECTION */ +.hero { + background: url("../images/landing.jpg") center/cover no-repeat; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + padding-top: 60px; +} + +.hero-text { + color: white; + text-align: center; +} + +.hero-text h1 { + font-size: 60px; + margin-bottom: 15px; +} + +/* FEATURES */ +.features { + padding: 70px 20px; + text-align: center; +} + +.features h2 { + font-size: 32px; + margin-bottom: 40px; +} + +.features-container { + display: flex; + justify-content: center; + gap: 60px; +} + +.feature-box { + width: 250px; +} + +.feature-box img { + width: 100px; + margin-bottom: 20px; +} + +.feature-box h3 { + margin-bottom: 10px; +} + +/* GREEN SECTION */ +.green-section { + background: #00B172; + display: flex; + justify-content: space-between; + padding: 80px; + color: white; + position: relative; +} + +.green-text { + width: 50%; +} + +.green-text h2 { + font-size: 40px; + margin-bottom: 40px; +} + +.item { + margin-bottom: 25px; +} + +.green-image { + width: 45%; + position: relative; + display: flex; + justify-content: center; +} + +.app-img { + width: 300px; + border-radius: 10px; +} + +.white-logo { + position: absolute; + top: 20px; + left: 20px; + width: 120px; + opacity: 0.7; +} + \ No newline at end of file