Skip to content

Actualización final #3565

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

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
63 changes: 57 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,66 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="styles/style.css">
<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.
<nav>
<img src="./images/spotify-logo.png" alt="spotify-logo">
<ul>
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</nav>
<div class="banner">
<h1>Music for everyone.</h1>
<p>
Spotify is now free on mobile, tablet and computer. Listen to the right music, wherever you are.
</p>
</div>
<section>
<h1 class="wos">What’s on Spotify?</h1>
<article>
<div>
<img src="./images/music-icon.png"alt="music-icon">
<h2>Millions od Songs</h2>
<p>There are millions of songs on Spotify</p>
</div>
<div>
<img src="./images/high-quality-icon.png" alt="high-quality-icon">
<h2>HD Music</h2>
<p>Listen to music as if you were listening live</p>
</div>
<div>
<img src="./images/devices-icon.png" alt="devices-icon">
<h2>Stream Everywhere</h2>
<p>Stream music on your smartphone, tablet or computer</p>
</div>
</article>
</section>
<section class="iky">
<div>
<h1> It’s as yeezy as Kanye West.</h1>
<br>

<br>
<br>
<h3>Search</h3>
<p> Search Know what you want to listen to? Just search and hit play.</p>
<h3>Browse</h3>
<p>Check out the latest charts, brand new releases and great playlists for right now.</p>
<h3>Discover</h3>
<p>Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.</p>
</div>
<div>
<img src="./images/spotify-icon-white.png" alt="spotify-icon-white">
</div>
<div>
<img src="./images/spotify-app.jpg" alt="">
</div>
</section>
</body>
</html>
138 changes: 132 additions & 6 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,134 @@
/*
Colors:
html {
box-sizing: border-box;
}

Text: 1A1A1A
Green: #00B172
White: #FFF
/* Estilos generales */
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: white
color: white; /* Texto blanco */
margin: 0;
padding: 0;
}

*/
/* Navegación */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: white
}

nav img {
width: 120px; /* Ajusta el tamaño del logo */
height: auto;
}

nav ul {
list-style: none;
display: flex;
justify-content: space-around;
}

nav ul li {
margin: 0 15px;
cursor: pointer;
color: black;
}

/* Banner principal */
.banner {
background-image: url('../images/landing.jpg');
background-size: cover;
background-position: center;
color: white;
width: 100%;
height: 600px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.banner h1 {
font-size: 2rem;
font-weight: bold;
}

.banner p {
font-size: 1.2rem;
max-width: 600px;
}

/* Sección "What's on Spotify" */
section {
padding: 50px;
}

article {
display: flex;
justify-content: space-around;
font-size: 16px;
align-items: center;
flex-wrap: wrap;
}

article div {
text-align: center;
max-width: 300px;
}

.wos {
text-decoration: underline;
}

article h2 {
color: rgb(95, 199, 131);
font-size: 25px;
}

article p {
color: rgb(81, 78, 78);
}

article img {
width: 80px;
height: auto;
}

/* Sección final */
.iky {
background-color: rgb(95, 199, 131);
display: flex;
justify-content: space-between;
align-items: center;
padding: 40px;
color: white;
text-align: left;
}

.iky div {
flex: 1;
}

.iky h1 {
font-size: 2.4rem;
font-weight: bold;
text-decoration: underline;
}

.iky h3 {
font-size: 2.2rem;
font-weight: bold;
}

.iky p {
font-size: 1.5rem;
}

.iky img {
width: 400px;
height: auto;
}