From 897d2ae2c27330d7ca69dbc280df0980e9c1b6ab Mon Sep 17 00:00:00 2001 From: L Karthikeya Date: Thu, 5 Sep 2024 21:20:01 +0530 Subject: [PATCH] Uploaded the spotify clone static webpage --- index.html | 117 +++++++++++++++++++++++++++++--- styles/style.css | 169 +++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 272 insertions(+), 14 deletions(-) diff --git a/index.html b/index.html index 0697f92..26c9480 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,115 @@ 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. +
+ logo-spotify + +
+
+

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.

+ +
+
+ +
+
+
+ +
+
+ - + \ No newline at end of file diff --git a/styles/style.css b/styles/style.css index 55efb32..b8f188c 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,8 +1,165 @@ -/* -Colors: +body{ + margin: 0; +} -Text: 1A1A1A -Green: #00B172 -White: #FFF +header{ + display: flex; + justify-content: space-between; + align-items: center; + height: 10vh; + width: 100vw; +} -*/ +nav{ + display: flex; + justify-content: space-around; + width: 35vw; +} + +nav > a{ + text-decoration: none; + color: #070707; +} + + +.logo-spotify{ + height: auto; + width: 10vw; + margin-left: 2vw; +} + +.start{ + background-image: url(../images/landing.jpg); + display: flex; + justify-content: center; + background-size: cover; + height: 850px; + align-items: center; + flex-direction: column; +} + +.start-texts-Music{ + color: white; + margin: 5vh 0; + font-size: 5vw; +} + +.start-texts-Para{ + color: white; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin: 0; + font-size: 1.5vw; +} + +h2{ + /* text-decoration: underline; */ + display: flex; + justify-content: center; + align-content: center; + font-size: 3vw; + border-bottom: 2px solid #06bc7d; + margin: 4vh 37vw; +} + +.ads{ + display: flex; + justify-content: space-around; + align-items: center; + flex-direction: row; + margin: 10vh 5.5vw; +} + +.ads-block{ + text-align: center; + +} + +.ads-text{ + display: flex; + justify-content: center; + font-size: 25px; + color: #06bc7d; + align-items: center; + margin: 0; +} + +.ads-desc{ + margin: 3vh 0 3vh 0; + font-size: 20px; + width: 13vw; + color: #8a8a8a; +} + +.bottom{ + width: auto; + /* height: 100vh; */ + background-color: #06bc7d; + margin: 0 2vw; +} + +h3{ + color: white; + font-size: 40px; + border-bottom: 2px solid white; + margin: 0 52vw 0 10vw; + +} + +.bottom-search{ + padding: 5vh 5vw; + display: flex; + flex-direction: column; + width: 30vw; + margin: 0; + +} + +.title-search{ + color: white; + margin: 0; + font-size: 3vw; +} +.desc-search{ + color: white; + padding: 3vh 0; + font-size: 1vw; + max-width: 25vw; + margin: 0; +} + +.center-bottom{ + display: flex; + flex-direction: column; + align-items: center; + /* padding-bottom: 50vh; */ +} + +/* .middle{ + display: flex; + flex-direction: column; + height: 600px; + justify-content: center; + margin-bottom: 100vh; +} */ + +.icon-white{ + display: flex; + justify-content: center; + margin: 0; + align-items: center; + flex-direction: column; +} + +.app{ + display: flex; + flex-direction: row; + justify-content: flex-end; +} + +.app-pic{ + display: flex; + flex-direction: column; +} \ No newline at end of file