From 5e200678953b866dbab4cb031af7974ffc0fa4f9 Mon Sep 17 00:00:00 2001 From: "Abigail M. Rodriguez" Date: Mon, 18 Oct 2021 00:49:27 -0500 Subject: [PATCH] feat| simplified version of Spotify home page --- index.html | 126 ++++++++++++++++++++++++++++++++++++++++++++--- styles/style.css | 88 ++++++++++++++++++++++++++++++++- 2 files changed, 207 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 4a81684..5c9a05e 100644 --- a/index.html +++ b/index.html @@ -4,15 +4,129 @@ + 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 icoon +
+ 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? + Search 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 icon +
+
+ spotify app +
+
+
+ \ No newline at end of file diff --git a/styles/style.css b/styles/style.css index 68b1e59..2e4ba62 100644 --- a/styles/style.css +++ b/styles/style.css @@ -3,4 +3,90 @@ Colors: Text: 1A1A1A Green: #00B172 White: #FFF -*/ \ No newline at end of file +*/ + +.nav-item{ + padding-left: 10px; + padding-right: 10px; + background-color: white; +} +.navbar img{ + width: 30vh; +} + + +.intro{ + background-image: url(./../images/landing.jpg); + height: 100vh; + background-size: cover; + display: flex; + justify-content: center; + align-items: center; + +} +.text-s h1{ + padding: 20px; + color: white; + display:block; + align-items: center; + text-align: center; + font-size: 4em; +} + +.text-s h5{ + padding: 5px; + color: white; + display:block; + align-items: center; + text-align: center; +} + +.whats{ + padding: 50px; + align-items: center; + text-align: center; +} +.whats h2{ + text-align: center; + padding: 15px; +} +.col-sm img{ + height: 15vh; + margin-right: auto; + margin-left: auto; +} +.col-sm p{ + text-align: center; +} +.col-sm h5{ + color: #00B172; + text-align: center; + padding: 5px; +} + +.col h2{ + color: white; +} + +.col p{ + color: white; +} +.tit{ + color: white; + font-size: 25px; + padding-bottom: 15px; + padding-top: 15px; + text-decoration: underline; +} + +#icon{ + display: flex; + justify-content: center; + align-items: center; +} + +#app{ + display: flex; + justify-content: center; + align-items: center; +} \ No newline at end of file