From a5a02c429cfe030e1339402f12987c2832507c78 Mon Sep 17 00:00:00 2001 From: Rafa Date: Mon, 20 Oct 2025 07:44:43 +0200 Subject: [PATCH 1/3] Firts version web --- index.html | 79 ++++++++++++++++-- styles/style.css | 205 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 278 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 0697f92fe..3f49f638f 100644 --- a/index.html +++ b/index.html @@ -6,13 +6,80 @@ 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? +
+
+
+ +

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.

+
+
+
+ +
+
+ +
+
+
+ diff --git a/styles/style.css b/styles/style.css index 55efb32c6..d89b2b9d2 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,208 @@ Green: #00B172 White: #FFF */ +body { + padding: 0; + margin: 0; + font-family: 'Roboto', sans-serif; +} + +.textcolor { + color: #1A1A1A; +} + +.green { + color: #00B172; +} + +.white { + color: #FFF; +} + +.navbar { + width: 100%; + height: 60px; + display: flex; + position: fixed; + justify-content: space-between; + align-items: center; + background-color: #FFF; + margin: 0; + padding: 0 20px; + box-sizing: border-box; +} + +.navbar ul { + display: flex; + margin: 0; + padding: 0; + gap: 1.5rem; + font-weight: 200; +} + +.navbar li { + display: flex; + justify-content: space-between; + border-right: 1px solid #FFF; +} + +.navLogo { + height: 47px; + width: auto; +} + +.imageCover { + display: flex; + background-image: url("../images/landing.jpg"); + background-size: cover; + background-repeat: no-repeat; + background-position: center; + justify-content: center; + height: 600px; + padding: 0; + margin: 0; +} + +.textCover { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + width: 550px; + gap: 5px; +} + +.textCover h1 { + font-size: 60px; + font-weight: 500; +} + +.textCover p { + font-size: 23px; + font-weight: 200; +} + +.titleBloq { + display: flex; + text-align: center; + padding: 2px; + margin: 2px; +} + +.features { + padding: 40px 40px; + text-align: center; + height: 350px; +} + +.feature { + margin-bottom: 30px; +} + +.featuresTitle { + border-bottom: 3px solid #00B172; + font-size: 30px; + font-weight: bold; +} + +.sections { + display: flex; + flex-direction: row; + justify-content: center; + align-items: flex-start; + gap: 100px; + padding: 20px; +} + +.section { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + max-width: 250px; + gap: 10px; +} + +.section img { + width: 100px; + height: 100px; + object-fit: contain; +} + +.section h2 { + margin: 10px 0 5px; + font-size: 1.5rem; +} + +.section p { + margin: 0; + font-size: 1.1rem; + font-weight: 300; + line-height: 1.5; + color: #9c9c9c; + width: 190px; +} + +.sections--bottom { + display: flex; + flex-direction: row; + justify-content: space-between; + background-color: #00B172; + margin: 0 30px 30px 30px; + height: 600px; + gap: 20px; +} + +.section--bottom--left { + display: flex; + flex: 1; + flex-direction: column; + justify-content: center; + align-items: flex-start; + padding-left: 55px; +} + +.section--bottom--left--title { + border-bottom: 3px solid #FFF; + padding-bottom: 8px; + max-width: 100%; +} + +.section--bottom--left--text { + width: 240px; +} + +.section--bottom--left h1 { + font-weight: 500; +} + +.section--bottom--left--text p { + font-weight: 200; + line-height: 1.5; + font-size: 1rem; +} + +.section--bottom--img--icon { + display: flex; + justify-content: center; + align-items: center; +} + +.section--bottom--img--icon img { + width: 100px; + height: 100px; + object-fit: contain; +} + +.section--bottom--img--app { + display: flex; + justify-content: center; + align-items: center; + padding-right: 55px; +} + +.section--bottom--img--app img { + width: auto; + height: 450px; + object-fit: contain; +} \ No newline at end of file From 9e5f4d166ee329458e32fe326f885b2247b282e3 Mon Sep 17 00:00:00 2001 From: Rafacruiz Date: Mon, 20 Oct 2025 09:29:59 +0200 Subject: [PATCH 2/3] Second version --- index.html | 20 ++++++++++++-------- styles/style.css | 12 ++++++------ 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/index.html b/index.html index 3f49f638f..542b8a739 100644 --- a/index.html +++ b/index.html @@ -37,17 +37,17 @@

Music for everyone.

- + 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

- + device

Stream Everywhere

Stream music on your smartphone, tablet or computer

@@ -56,7 +56,7 @@

Stream Everywhere

-
+

It’s as yeezy as Kanye West.

@@ -72,11 +72,15 @@

Discover

Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.

-
- +
+
+ music-icon +
-
- +
+
+ spotify-app +
diff --git a/styles/style.css b/styles/style.css index d89b2b9d2..bb63bf023 100644 --- a/styles/style.css +++ b/styles/style.css @@ -163,10 +163,14 @@ body { flex: 1; flex-direction: column; justify-content: center; - align-items: flex-start; + align-items: center; padding-left: 55px; } +.section--bottom--left h1 { + font-weight: 500; +} + .section--bottom--left--title { border-bottom: 3px solid #FFF; padding-bottom: 8px; @@ -174,11 +178,7 @@ body { } .section--bottom--left--text { - width: 240px; -} - -.section--bottom--left h1 { - font-weight: 500; + width: 250px; } .section--bottom--left--text p { From 4dce3d47856aaeead31d28d15ecdf27917ea1567 Mon Sep 17 00:00:00 2001 From: Rafa Date: Mon, 20 Oct 2025 17:06:08 +0200 Subject: [PATCH 3/3] Solved lab --- styles/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/styles/style.css b/styles/style.css index bb63bf023..e2af7a530 100644 --- a/styles/style.css +++ b/styles/style.css @@ -164,7 +164,7 @@ body { flex-direction: column; justify-content: center; align-items: center; - padding-left: 55px; + } .section--bottom--left h1 { @@ -174,7 +174,7 @@ body { .section--bottom--left--title { border-bottom: 3px solid #FFF; padding-bottom: 8px; - max-width: 100%; + width: 400px; } .section--bottom--left--text { @@ -203,7 +203,7 @@ body { display: flex; justify-content: center; align-items: center; - padding-right: 55px; + } .section--bottom--img--app img {