diff --git a/index.html b/index.html index 0697f92fe..6fd5f8866 100644 --- a/index.html +++ b/index.html @@ -1,18 +1,64 @@ - - - - - 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. - - + + + + + + Spotify Clone + + + + + +
+ +
+
+

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 yourown personal playlist. Or sit back and enjoy Radio.

+
+
spotify-app
+ +
+ + + \ No newline at end of file diff --git a/styles/style.css b/styles/style.css index 55efb32c6..083d0910c 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,153 @@ Green: #00B172 White: #FFF */ + +* { + margin: 0px; +} + +body { + + font-family: sans-serif; +} + +.flex-container { + display: flex; + +} + +header { + + position: fixed; + margin: 0px; + width: 100%; +} + +nav { + justify-content: space-between; + background-color: white; + padding: 20px 10px; + margin: 0px; + align-items: center; + +} + +nav img { + + width: 300px; +} + +nav ul { + list-style: none; + +} + +nav ul li { + + margin-right: 25px; + font-size: 20px; + +} + +nav ul li a { + + color: black; + text-decoration: none; + +} + +.section1 { + background-image: url(../images/landing.jpg); + background-position: center; + background-size: cover; + background-repeat: no-repeat; + width: 100%; + height: 100vh; + align-items: center; + justify-content: center; + flex-direction: column; +} + +.section1 h1 { + color: white; + font-size: 80px; + font-weight: 500; + margin-bottom: 30px; +} + +.section1 p { + font-weight: normal; + color: white; + font-size: 28px; +} + +.section2 h2 { + + text-align: center; + padding-top: 30px; + font-size: 35px; + +} + +.central-div { + + padding: 80px; + +} + +.central-div article { + + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.central-div article img { + + width: 30%; + +} + +.central-div article p { + + width: 45%; + text-align: center; + font-size: 20px; + padding-top: 28px; +} + +.central-div article h3 { + margin-top: 20px; + font-size: 24px; + color: #00B172; + +} + +.section3 { + + background-color: #00B172; + margin: 30px; + padding: 50px; + color: white; +} + +.section3 h3 { + + font-size: 30px; +} + +.section3 h4 { + + font-size: 24px; + margin-top: 40px; +} + +.section3 p { + + font-size: 16px; + width: 50%; + margin-top: 30px; +} + +.section3 img {} \ No newline at end of file