From 5e5aae2cc2b3b09f3bbfa5ac4a78e1a082355132 Mon Sep 17 00:00:00 2001 From: KelvinFamilia Date: Mon, 13 Jan 2025 15:25:52 +0000 Subject: [PATCH] vesion 1 de spotify Kfamilia clone --- index.html | 84 +++++++++++++++++++++------ styles/style.css | 147 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 215 insertions(+), 16 deletions(-) diff --git a/index.html b/index.html index 0697f92fe..0a26caedf 100644 --- a/index.html +++ b/index.html @@ -1,18 +1,70 @@ - - - - - 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?

+
+
+ icono de parlante +

Millions of Songs

+

There are millions of songs on Spotify

+
+
+ icono de calidad +

HD Music

+

Listen to music as if you were listening live

+
+
+ icono de un mobil +

Stream Everywhere

+

Stream music on your smartphone, tablet or computer

+
+
+
+ + + + + + + \ No newline at end of file diff --git a/styles/style.css b/styles/style.css index 55efb32c6..ba32838f3 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,150 @@ Green: #00B172 White: #FFF */ +* { + box-sizing: border-box; + padding: 0; + margin: 0; + +} + + +h1 { + text-align: center; + padding-top: 190px; + color: white; + font-size: 4rem; +} + +h2 { + font-size: 1.6em; +} + +header { + margin-top: 20px; + width: 100%; + background-image: url(../images/landing.jpg); + background-size: cover; + + height: 100vh; + height: 100dvh; + +} + +nav { + position: fixed; + width: 100%; + padding: 10px; + background-color: white; + display: flex; + justify-content: space-between; + align-items: center; + top: 0; + +} + +header nav img { + width: 200px; + height: 60px; +} + +header nav ul { + width: 300px; + list-style-type: none; + display: block; + display: flex; + justify-content: space-around; +} + +header nav ul li a { + text-decoration: none; + color: #1A1A1A +} + +header p { + text-align: center; + color: rgba(255, 255, 255, 0.647); +} + +.container { + text-align: center; + width: 100%; +} +.container h2{ + padding: 20px; +} +.caja { + padding: 30px 20px 20px 20px; + width: 100%; + display: flex; + justify-content: space-around; + height: 50dvh; + height: 50vh; + + +} + +#section1 h2 { + /* color: #00B172; */ + + text-decoration: underline #00B172; + text-underline-offset: 10px; + + +} + +.caja article { + width: 170px; +} + +.caja article img { + width: 60px; +} + +footer{ + margin: auto; + background-color: #00B172; + width: 96%; + display: flex; + color: white; + flex-wrap: wrap; + +} +footer article h2{ + color: white; + text-decoration: underline white; + text-underline-offset: 10px; + +} + +footer article { + display: flex; + flex-direction: column; + align-items: left; + justify-content: center; + width: 27%; + padding: 25px; + gap: 50px; + min-width: 300px; + + + } +footer img { + padding: 10px; + margin: auto; + background-color: #00B172; + width: 130px; +} +footer aside { + margin: auto; + background-color: #00B172; + width: 100%; + min-width: 300px; + max-width: 400px; +} +footer aside img { + padding-top: 55px; + background-color: #00B172; + width: 100%; + +} \ No newline at end of file