Skip to content
Open

done #13

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
111 changes: 103 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,110 @@
<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 -->
<title>Spotify</title>
<link rel="stylesheet" href="./styles.css">
</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 class="nav-bar">
<div class="logo">
<img src="images/spotify-logo.png" alt="Logo">
</div>

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

<header class="header">

<h1>
Music for everyone.
</h1>
<img src="images/landing.jpg" alt="Landing">

<aside class="quote">
<blockquote>
Spotify is now free on mobile, tablet and computer. <br> Listen to the
right music, wherever you are.
</blockquote>
</aside>
</header>

<section class="spotify-info">
<h2>What’s on Spotify?</h2>
<div class="info-container">
<div class="info-item">
<img src="images/music-icon.png" alt="Music Icon">
<h3>Millions of songs</h3>
<p>There are millions of songs on Spotify.</p>
</div>
<div class="info-item">
<img src="images/high-quality-icon.png" alt="HD Music Icon">
<h3>HD Music</h3>
<p>Listen to music as if you were listening live.</p>
</div>
<div class="info-item">
<img src="images/devices-icon.png" alt="Devices Icon">
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet, or computer.</p>
</div>
</div>
</section>


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

<div class="image-container">
<img src="images/spotify-app.jpg" alt="Spotify App" class="spotify-image">
</div>

<div class="logo-container">
<img src="images/spotify-icon-white.png" alt="Spotify Logo" class="spotify-logo">
</div>
</section>














<!--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>
</html>

240 changes: 240 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,240 @@
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:100,300,700');
html,
body {
margin: 0;
padding: 0;
}

/*
Colors:

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

*/



body {
font-family: 'Roboto';
font-size: 10px;
font-weight: 300;
}

h1 {

position: absolute;
margin: 350px;
padding: 10;
font-size: 10em;
color: white;
z-index:1;
text-align: center;
transform: translateX(20%);


}




.nav-bar {
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: white;
padding: 10px 20px;
z-index: 10;
}

.logo img {
height: 70px;
width: auto;
}

.nav-bar-ul {
display: flex;
list-style-type: none;
font-size: 20px;
margin: 0;
padding: 0;
margin-right: 50px;
}

.nav-bar-ul li {
margin-left: 20px;
}

.nav-bar-ul a {
text-decoration: none;
color: black;
font-weight: bold;
}


.header {
background: url('images/landing.jpg') no-repeat center center;
background-size: contain;
background-position: center center;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
overflow: hidden;
}


.quote {
text-align: center;
font-size: 2.5em;
color: white;
position: absolute;
bottom: 100px;
left: 510px;

}

blockquote {

padding: 10px;
padding: 1px;
font-size: 1.5em

}



/* Estilos para la nueva sección */
.spotify-info {
padding: 50px 20px;
background-color: #f7f7f7;
text-align: center;
}

.spotify-info h2 {
font-size: 3rem;
text-decoration: underline;
color: black;
text-decoration-color: #00b172;
margin-bottom: 30px;
}

.info-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
}

.info-item {
flex: 1 1 28%;
background-color: transparent;
padding: 20px;
box-shadow: none;
text-align: center;
border-radius: 8px;
position: relative;
aspect-ratio: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
margin: 0 15px;
}

.info-item img {
width: 50%px;
height: 150px;
object-fit: cover;
margin-bottom: 20px;
}

.info-item h3 {
font-size: 3rem;
margin-bottom: 10px;
color: #00b172;
}

.info-item p {
font-size: 2.7rem;
text-align: center;
color: #333;
margin: 0 20px;
margin-top: 20px;
}


.green-section {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #1DB954;
color: white;
padding: 80px 50px;
height: 800px;
position: relative;
}

.text-container {
width: 45%;
text-align: left;
margin: 60px;

}

.main-text {
font-size: 2.5rem;
text-decoration: underline;
font-weight: bold;
margin-bottom: 30px;
}



h2 {
font-size: 2rem;
margin-bottom: 10px;
}

p {
font-size: 1.4rem;
margin-bottom: 90px;
}

.image-container {
position: relative;
width: 35%;
display: flex;
justify-content: center;
}

.spotify-image {
width: 100%;
height: auto;
max-width: 400px;
margin-top: 90px;
}

.logo-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;

}

.spotify-logo {
width: 150px;
height: auto;
}





8 changes: 0 additions & 8 deletions styles/style.css

This file was deleted.