Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PP jorge higes y rodrigo lopez #3227

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
97 changes: 81 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,83 @@
<!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>
<!-- don't forget to link your styles -->
</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.
</body>
</html>

<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>
<section>
<header class="menu">
<figure>
<img src="./images/spotify-logo.png" alt="spotify-logo">
</figure>
<nav>
<ul>
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</nav>
</ul>
</header>
<article class="Hero">
<h1>Music for everyone.</h1>
<p>Spotify is now free on mobile, tablet and computer. Listen to the
right music, wherever you are.</p>
</article>
</section>

<section>
<h2>What’s on Spotify?</h2>
<div class="articles-container">
<article>
<figure><img src="./images/music-icon.png" alt="music icon"></figure>
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify</p>
</article>
<article>
<figure><img src="./images/high-quality-icon.png" alt="high quality icon"></figure>
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</article>
<article>
<figure><img src="./images/devices-icon.png" alt="devices icon"></figure>
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</article>
</div>
</section>
<section class="div-container">
<figure class="section-logo"></figure>
<div>
<h4>It’s as yeezy as Kanye West.</h4>
<article>
<h5>Search</h5>
<p>Know what you want to listen to? Just search and hit play.</p>
</article>
<article>
<h5>Browse</h5>
<p>Check out the
latest charts, brand new releases and great playlists for right now.</p>
</article>
<article>
<h5>Discover</h5>
<p>Enjoy new music every Monday with your
own personal playlist. Or sit back and enjoy Radio.</p>
</article>

</div>
<div>
<figure><img src="./images/spotify-app.jpg" alt="spotify-app"></figure>
</div>
</section>



</body>

</html>
105 changes: 105 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,108 @@ Green: #00B172
White: #FFF

*/

img {
width: 100%;
}

.menu {
display: flex;
justify-content: space-between;
align-items: center;
list-style-type: none;
padding: 2px 10px;
background-color: white;
}

.menu ul {
display: flex;
list-style: none;
}

.menu li {
margin-right: 20px;
}

.menu img {
width: 200px;
}

.Hero {
text-align: center;
margin: 0px;
padding: 300px 50px;
color: white;
background-image: url("./../images/landing.jpg");
background-size: cover;

}

.Hero p {
font-size: 1em;
}

h1 {
font-size: 3em;
}

h2 {
display: flex;
justify-content: center;
}

.articles-container {

display: flex;
justify-content: center;


}

.articles-container article {
width: 28%;
text-align: center;
}

.articles-container img {
width: 50px;
}

.div-container {
display: flex;
justify-content: space-around;
align-items: center;
padding: 60px 30px;
margin: 0px 15px;
background-color: green;
align-items: flex-start;

}

.div-container article {
width: 25%;
text-decoration: none;
font-size: large;
color: white;

}

.div-container article h5 {
width: 25%;
text-decoration: none;
font-size: xx-large;
color: white;

}


.div-container img {
width: 300px;
}

.section-logo {
display: flex;
justify-content: center;
align-items: center;
background-image: url("./../images/spotify-icon-white.png");
}