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
90 changes: 75 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,78 @@
<!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>
<head>
<meta charset="UTF-8" />
<title> Spotify | Clone </title>
<link rel="stylesheet" href="styles/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<section class="purple">

<section class="bg_w">

<section class="blue">
<nav class="green">
<ul class="green">
<a href="#">Premium</a>
<a href="#">Discover</a>
<a href="#">Help</a>
<a href="#">Download</a>
</ul>
</nav>
</section>

</section>

<section class="imagen">Music for everyone.
<p class="everywhere">
Spotify is now free on mobile, tablet and computer. <br>Listen to the right music, wherever you are.
</p>
</section>

</section>
<section class="red">
What’s on Spotify?
<section class="orange">
<div class="first_con">
<div class="songs"></div>
Millions of songs
<p>
There are millions of songs on Spotify
</p>
</div>
<div class="second_con">
<div class="hd"></div>
HD Music
<P>
Listen to music as if you were listening live
</P>
</div>
<div class="third_con">
<div class="stream"></div>
Stream Everywhere
<p>
Stream music on your smartphone, tablet or computer
</p>
</div>
</section>
</section>
<section class="marine">
<div class="bg_green">
<div class="app logo_w">
<div class="text_bg">
<p class="kanye"><br> It’s as yeezy as Kanye West.</p>
<hr class="linea_h">
<p class="search">Search</p>
<p class="search_p">Know what you want to listen to? Just search and hit play.</p>
<p class="browse">Browse</p>
<p class="browse_p">Check out the latest charts, brand new releases and great playlists for right now.</p>
<p class="discover">Discover</p>
<p class="discover_p">Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.</p>
</div>
</div>
</div>
</section>
</body>

</html>
183 changes: 182 additions & 1 deletion styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,185 @@ Colors:
Text: 1A1A1A
Green: #00B172
White: #FFF
*/
*/
section.bg_w{
position: fixed;
top: 0px;
width: 100vw;
background-color: white;
padding: 10px 0px;
}
.blue{
background: url(../images/spotify-logo.png) ;
background-size: contain;
background-position: left;
background-repeat: no-repeat;
}
.green{
display: flex;
justify-content: flex-end;
margin-right: 20px;
}
a{
font-size: 25px;
margin: 0 15px;
text-decoration: none;
color:black;
}
.imagen{
background: url(../images/landing.jpg);
height: 100vh;
background-size: 100vw;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 5vw;
background-repeat: no-repeat;
}
.everywhere{
font-size: 2vw;
display: flex;
flex-direction: row;
justify-content: center;
text-align: center;
}
.orange{
display: flex;
flex-direction: row;
margin: 50px 0px;
justify-content: space-evenly;

}
.red{
font-size: 3vw;
text-align: center;
margin-top: 50px;
}
.songs{
background: url(../images/music-icon.png);
background-repeat: no-repeat;
background-position: center;
height: 60px;
width: 200px;
background-size: contain;
margin-bottom: 20px;
}
.first_con{
color: #00B172;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.first_con p{
font-size: 1.5vw;
color: black;
width: 250px;
}
.hd{
background: url(../images/high-quality-icon.png);
background-repeat: no-repeat;
background-position: center;
height: 60px;
width: 200px;
background-size: contain;
margin-bottom: 20px;

}
.second_con{
color: #00B172;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.second_con p{
font-size: 1.5vw;
text-align: center;
color: black;
width: 250px;
}
.stream{
background: url(../images/devices-icon.png);
background-repeat: no-repeat;
background-position: center;
height: 60px;
width: 200px;
background-size: contain;
margin-bottom: 20px;
}
.third_con{
color: #00B172;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.third_con p{
font-size: 1.5vw;
text-align: center;
color: black;
width: 250px;
}
.marine{
width: 90vw;
height: 700px;
margin: 0 auto;
}
div.bg_green{
background: #00B172;
width: 100%;
height: 100%;
}
div.app{
background-image: url(../images/spotify-app.jpg);
height: 100%;
width: 90%;
background-size: 30%;
background-repeat: no-repeat;
background-position-x: right;
background-position-y: center;
margin: -25px auto;
}
.text_bg{
color: white;
width: 450px;
height: 90%;
}
.kanye{
color: white;
font-weight: 800;
font-size: 35px;
margin-top: 0px;
margin-bottom: 50px;
}
.search{
font-weight: 800;
font-size: 35px;
}
.search_p{
font-size: 20px;
font-weight: 200;
}
.browse{
font-weight: 800;
font-size: 35px;
}
.browse_p{
font-size: 20px;
font-weight: 200;
}
.discover{
font-weight: 800;
font-size: 35px;
}
.discover_p{
font-size: 20px;
font-weight: 200;
}
.logo_w{
background: url(../images/spotify-icon-white.png);
background-size: contain;
}