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
110 changes: 95 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,98 @@
<!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" />
<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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap" rel="stylesheet" />
</head>

<body>
<header>
<td><img src="./images/spotify-logo.png" style="height: 70%; margin-left: 2%"; /></td>
<table style="width: 40%;">
<tr>
<td>Premium</td>
<td>Discover</td>
<td>Help</td>
<td>Download</td>
</tr>
</table>
</header>

<section id="banner">
<h1>Music for everyone.</h1>

<h2>
Spotify is now free on mobile, tablet and computer.<br />
Listen to the right music, wherever you are.
</h2>
</section>

<section id="whatsOn">

<h3>What’s on Spotify?</h3>


<table id="tabla1">
<tr>
<td class="iconSection">
<img class="icon" src="/images/music-icon.png">

</td>
<td class="iconSection">
<img class="icon" src="/images/high-quality-icon.png">
</td>
<td class="iconSection">
<img class="icon" src="/images/devices-icon.png">
</td>
</tr>
<tr>
<td>
<h4>Millions of Songs </h4>
</td>
<td>
<h4> HD Music </h4>
</td>
<td>
<h4>Stream Everywhere </h4>
</td>
</tr>
<tr>
<td><p>There are millions of songs on Spotify</p></td>
<td><p>Listen to music as if you were listening live</p></td>
<td><p>Stream music on your smartphone, tablet or computer</p></td>
</tr>


</table id="tabla2">
</div>
<div id="greenDiv">
<h5>It’s as yeezy as Kanye West.</h5>
<table style="width: 90%; margin: auto;">

<tr>
<td >
<h6>Search </h6>
<p class="white">Know what you want to listen to? Just search and hit play.</p>
<h6>Browse </h6>
<p class="white"> Check out the latest charts, brand new releases and great playlists
for right now.</p>
<h6>Discover</h6>
<p class="white">Enjoy new music every Monday with your own personal
playlist. Or sit back and enjoy Radio.</p>
</td>
<td style="width: 30%; text-align: center;"><img class="icon" src="/images/spotify-icon-white.png"></td>
<td><img style="width:100%;margin-rigth:20px;" src="/images/spotify-app.jpg"></td>
</tr>
</table>

</section>
</body>

</html>
110 changes: 109 additions & 1 deletion styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,112 @@ Colors:
Text: 1A1A1A
Green: #00B172
White: #FFF
*/
*/
h1 {
color: white;
font-weight: bold;
font-size: 4em;
}

h2 {
color: white;
font-weight: 300;
font-size: x-large;
}

h3 {
text-decoration: underline #00b172 4px;
text-underline-position: under;
font-size: 2em;
color: #1a1a1a;
text-align: center;
}

h4 {
color: #00b172;
text-align: center;
font-size: 2em;
}

h5 {
color: white;
text-decoration: underline 4px;
text-underline-position: under;
font-size: xx-large;
padding: 5%;
}

h6 {
font-size: x-large;
color: white;
}

p {
width: 70%;
font-size: x-large;
margin: auto;
}

#banner {
height: 100vh;
background-image: url(../images/landing.jpg);
background-size: cover;
display: grid;
text-align: center;
align-content: center;
justify-content: center;
}

#headerCol1 {
width: 60%;
}

#whatsOn {
}

#greenDiv {
background-color: #00b172;
width: 95%;
margin: auto;
}

.icon {
width: 150px;
}

#tabla1 {
display: flex;
justify-content: center;
text-align: center;
}

#tabla2 {
display: flex;
justify-content: center;
text-align: center;
}

.white{
color: white;
width: 100%;
}

.iconSection{
width: 30%;
}

header{
display: flex;
justify-content: space-between;
height: 80px;
position: fixed;
background-color: white;
width: 100%;
align-content: center;
align-items: center;
margin: -8px;
}

* {
font-family: "Montserrat", sans-serif;
}