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

Final Version Kilian y Néstor #3509

Open
wants to merge 3 commits 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
72 changes: 66 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,74 @@
<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">
<!-- 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.

<!-- Primera sección-->
<section id="section 1">

<nav class="nav-bar">
<img id="logo" src="https://raw.githubusercontent.com/nestorsdelgado/lab-css-spotify-clone/refs/heads/master/images/spotify-logo.png" alt="Logo spotify">
<ul class="nav-bar-ul">
<li><a href="#premium">Premium</a></li>
<li><a href="#discover">Discover</a></li>
<li><a href="#help">Help</a></li>
<li><a href="#download">Download</a></li>
</ul>
</nav>


</section>

<!-- Imagen principal-->
<section id="principal">
<h1>Music for everyone.</h1>
<h2>Music for everyone. Spotify is now free on mobile, tablet and computer.</h2>
<h3>Listen to the right music, wherever you are.</h3>
</section>

<section id="spotify-features">
<h2>What's on Spotify?</h2>
<div class = "bloque">
<article class="features">
<img src="https://raw.githubusercontent.com/nestorsdelgado/lab-css-spotify-clone/refs/heads/master/images/music-icon.png" alt="Music-icon">
<h3>Millions of songs</h3>
<p>There are millions of songs on Spotify</p>
</article>
<article class="features">
<img src="https://raw.githubusercontent.com/nestorsdelgado/lab-css-spotify-clone/refs/heads/master/images/high-quality-icon.png" alt="High-icon">
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</article>
<article class="features">
<img src="https://raw.githubusercontent.com/nestorsdelgado/lab-css-spotify-clone/refs/heads/master/images/devices-icon.png" alt="Devices-icon">
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</article>
</div>
<br><br>
</section>
<section id="last-section">
<div id="column-container">

<div>
<h3>It’s as yeezy as Kanye West.</h3>
<h4>Search</h4>
<p>Know what you want to listen to? Just search and hit play.</p>
<h4>Browse</h4>
<p>Check out the latest charts, brand new releases and great playlists for right now.</p>
<h4>Discover</h4>
<p>Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.</p>
</div>

<div>
<img id="pantalla" src="https://raw.githubusercontent.com/nestorsdelgado/lab-css-spotify-clone/refs/heads/master/images/spotify-app.jpg" alt="app">
</div>
</div>

<img id="white-logo" src="https://raw.githubusercontent.com/nestorsdelgado/lab-css-spotify-clone/refs/heads/master/images/spotify-icon-white.png" alt="white-logo">
</section>
</body>
</html>
168 changes: 167 additions & 1 deletion styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,174 @@
/*
Colors:

Text: 1A1A1A
Text: 1A1A1A 26,26,26
Green: #00B172
White: #FFF

*/

.nav-bar {
position: fixed;
background-color: #FFF;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
top: 0;
left: 0;
}

.nav-bar-ul {
margin-left: 60%;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: space-around;
}

.nav-bar a {
color: rgb(0, 0, 0);
text-decoration: none;
font-size: 30px;
padding-top: 14px;
padding-bottom: 14px;
padding-right: 5px;
}

.nav-bar-ul > li {
padding: 5px;
}

#logo {
height: 5%;
width: 10%;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: right;
}

#principal {
background-image: url("https://raw.githubusercontent.com/nestorsdelgado/lab-css-spotify-clone/refs/heads/master/images/landing.jpg");
background-repeat: no-repeat;
background-size: cover;
padding-top: 50px;
height: 850px;
width: 100%;
}

#principal h1 {
color: #FFF;
text-align: center;
padding-top: 20%;
font-weight: bold;
font-size: 50px;
}

#principal h2 {
color: #FFF;
text-align: center;
font-weight:lighter;
font-size: 25px;
margin-bottom: 0px;
}

#principal h3 {
color: #FFF;
text-align: center;
font-weight:lighter;
font-size: 25px;
margin-top: 0px;

}

.bloque {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
}

#spotify-features h2 {
text-align: center;
font-size: 40px;
margin: 10px;
padding-bottom: 10px;
text-decoration:underline #00B172;
}

#spotify-features h3 {
font-size: 40px;
color: #00B172;
height: 50px;
}

#spotify-features p {
font-size: 25px;
padding-left: 20px;
padding-right: 20px;
margin-right: 20px;
margin-left: 20px;
margin: 0;
color: gray;
height: 10px;
}

.features {
display: flex;
flex-direction: column;
text-align:center;
align-items: center;
justify-content:space-between;
height: 300px;
width: 500px;
padding-bottom: 25px;
}

.features img{
width: 175px;
height: 150px;
}

#last-section {
background-color: #00B172;
color: white;
padding: 100px;
}

#column-container {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}

#last-section h3 {
font-size: 40px;
text-decoration: underline;
}

#last-section h4 {
font-size: 35px;
}

#last-section p {
font-size: 25px;
margin-right: 600px;
}

#pantalla {
padding-left: 20px;
height: 100%;
width: 80%;
}

#white-logo {
height: 150px;
width: 150px;
display: flex;
position: absolute;
top: 190%;
left: 45%;

}