Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 75 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,82 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Spotify Clone</title>
<!-- don't forget to link your styles -->
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
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.
<nav class="nav-bar container">
<img
class="spotify-logo"
src="./images/spotify-logo.png"
alt="imagen del logo"
/>
<ul class="gap-40">
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</nav>
<header class="container1">
<h1>Music for everyone.</h1>
<p class="text1">
Spotify is now free on mobile, tablet and computer. <br />
Listen to the right music, wherever you are.
</p>
</header>
<section>
<h2 class="maintittle maintittle1">What's on Spotify?</h2>
<div class="container-box">
<article>
<img src="./images/music-icon.png" alt="icono de altavoz" />
<h3 class="minitittle1">Millions of Songs</h3>
<p class="text2">There are million of songs on Spotify</p>
</article>

<article>
<img src="./images/high-quality-icon.png" alt="icono de frecuencia" />
<h3 class="minitittle1">HD Music</h3>
<p class="text2">Listen to musica as if you wew listening live</p>
</article>

<article>
<img src="./images/devices-icon.png" alt="" />
<h3 class="minitittle1">Stream Everywhere</h3>
<p class="text2">Stream music on your smarphone, table or computer</p>
</article>
</div>
</section>
<section2>
<div class="section2 container-final">
<div class="container-box-final">
<h2 class="maintittle maintittle2">It's as yeezy as Kanye West</h2>
<article>
<h3 class="minitittle2">Search</h3>
<p class="text3">Know what you want to listen to?</p>
</article>

<article>
<h3 class="minitittle2">Browse</h3>
<p class="text3">
Check out the latest charts, brand new reseases and great playlists
for right now
</p>
</article>

<article>
<h3 class="minitittle2">Discover</h3>
<p class="text3">
Enjoy new music every Monday with your own personal playlist. Or sit
back and enjoy Radio
</p>
</article>
</div>

<div>
<img id="spotify-app" src="./images/spotify-app.jpg" alt="imagen de la aplicación" />
</div>
</div>
</section2>
<footer></footer>
</body>
</html>
90 changes: 84 additions & 6 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,86 @@
/*
Colors:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Spotify Clone</title>
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<nav class="nav-bar container">
<img
class="spotify-logo"
src="./images/spotify-logo.png"
alt="imagen del logo"
/>
<ul class="gap-40">
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</nav>
<header class="container1">
<h1>Music for everyone.</h1>
<p class="text1">
Spotify is now free on mobile, tablet and computer. <br />
Listen to the right music, wherever you are.
</p>
</header>
<section>
<h2 class="maintittle maintittle1">What's on Spotify?</h2>
<div class="container-box">
<article>
<img src="./images/music-icon.png" alt="icono de altavoz" />
<h3 class="minitittle1">Millions of Songs</h3>
<p class="text2">There are million of songs on Spotify</p>
</article>

Text: 1A1A1A
Green: #00B172
White: #FFF
<article>
<img src="./images/high-quality-icon.png" alt="icono de frecuencia" />
<h3 class="minitittle1">HD Music</h3>
<p class="text2">Listen to musica as if you wew listening live</p>
</article>

*/
<article>
<img src="./images/devices-icon.png" alt="" />
<h3 class="minitittle1">Stream Everywhere</h3>
<p class="text2">Stream music on your smarphone, table or computer</p>
</article>
</div>
</section>
<section2>
<div class="section2 container-final">
<div class="container-box-final">
<h2 class="maintittle maintittle2">It's as yeezy as Kanye West</h2>
<article>
<h3 class="minitittle2">Search</h3>
<p class="text3">Know what you want to listen to?</p>
</article>

<article>
<h3 class="minitittle2">Browse</h3>
<p class="text3">
Check out the latest charts, brand new reseases and great playlists
for right now
</p>
</article>

<article>
<h3 class="minitittle2">Discover</h3>
<p class="text3">
Enjoy new music every Monday with your own personal playlist. Or sit
back and enjoy Radio
</p>
</article>
</div>

<div>
<img id="spotify-app" src="./images/spotify-app.jpg" alt="imagen de la aplicación" />
</div>
</div>
</section2>
<footer></footer>
</body>
</html>