Skip to content

spoty casi terminado #3592

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
87 changes: 80 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,88 @@
<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.

<!-- 🌐 Navegación principal -->
<nav class="navbar">
<div class="container navbar-content">
<a href="#" class="logo">
<img src="images\spotify-logo.png" alt="Logo" class="log-img">
</a>
<ul class="nav-links">
<li><a href="#Premium"></a>Premium</li>
<li><a href="#Discover"></a>Discover</li>
<li><a href="#Help"></a>Help</li>
<li><a href="#Download"></a>Download</li>
</ul>
</div>
</nav>

<!-- 🧭 Encabezado principal -->
<header class="encabezado">
<div class="container container2">

<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>
</header>

<main class="main">
<section class="section1">
<div class="container section1-content">
<h2>What’s on Spotify?</h2>

<div class="container3">
<div>
<img src="images\music-icon.png" alt="altavoz" class="speaker">
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify</p>
</div>
<div>
<img src="images\high-quality-icon.png" alt="frecuency" class="frecuency">
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</div>
<div>
<img src="images\devices-icon.png" alt="devices" class="device">
<h3>Stream Everywhere</h3>
<p>Stream Everywhere Stream music on your smartphone, tablet or computer</p>
</div>
</div>
</div>

<section class="container section2">
<div class="container4">
<h2>It’s as yeezy as Kanye West.</h2>
<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 class="container5">
<img src="images\spotify-icon-white.png" alt="logo-im" class="logo-im">
<img src="images\spotify-app.jpg" alt="Kanye" class="Kanye">
</div>
</section>

</main>






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

*/

body {
padding-top: 60px;


}
.navbar {
position: fixed;
padding: 10px 10px;
top: 0;
left: 0;
width: 100%;
height: 60px;
}

.container {
width: 100%;
box-sizing: border-box;
max-width: 1200px; /* o 1020px, lo que prefieras */
margin: 0 auto;
padding-left: 32px;
padding-right: 32px;
}

.navbar-content {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}

.log-img {
width: 120px;
height: auto;
}

.nav-links {

list-style: none;
display: flex;
gap: 20px;
font-size: 12px;
margin: 0;
padding: 0;
}

.encabezado {
height: 400px;

}


.container2 {
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
background-image: url('../images/landing.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 400px;
}

.section1 {
background: #fff; /* O el color de fondo que quieras */
padding-top: 20px;
padding-bottom: 80px;
min-height: 1000px;
}

.section1 h2 {
text-align: center;
padding-bottom: 20px;
margin: 0 auto;
}

.container3 {
display: flex;
justify-content: space-between; /* o 'center' + 'gap' si prefieres */
align-items: center; /* o 'center' si quieres alinear verticalmente */
width: 100%;
}

.container3 > div {
flex: 1; /* Cada bloque ocupa el mismo espacio posible */
text-align: center; /* Centra el contenido de cada bloque */
}

.container > h3 {
color: green;
font-weight: bold;
}

.speaker,
.frecuency,
.device {
width: 100px;
height: auto;
}

.container3 p {
font-size: 12px;
}

.section2 {
background-color: green;
display: flex;
text-align: left;
justify-content: center;
align-items: center;
width: 100%;
padding-left: 60px;
padding-top: 60px;
padding-bottom: 60px;
}


.container4 {
display: flex;
flex-direction: column;
align-items: left;
text-align: left;
}

.container4 h2 {
font-size: 30px;
}

.container4 h2,
.container h3,
.container4 p {
margin-left: 0;
text-align: left;
}


.container5 {
display: flex;
justify-content: space-evenly;
align-items: center;



}

.logo-im {
width: 13%;
}

.Kanye {
width: 30%;
}