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

WD-PT-SEP24-ES-Margarita Naranjo Tena #3488

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
68 changes: 65 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,73 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Spotify Clone</title>
<!-- don't forget to link your styles -->
<link rel="stylesheet" href="styles/style.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
<header>
<div>
<div>
<img class = "logo" src = "images/spotify-logo.png" alt = "spotify-logo">
</div>

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

<section class = "centro">
<!-- <img clas = "concierto" src = "images/landing.jpg" alt = "imagen concierto"> -->
<div >
<article class = "music">
Music for everyone.
</article>
<article class = "free">
Spotify is now free on mobile, tablet and computer. Listen to the right music, wherever you are.
</article>
<article class = "free">
Listen to the right music, wherever you are.
</article>
</div>
</section>

<section class = "whats-on">
<div class = "linea">
<p> What’s on Spotify? </p>
</div>

<div class = "max-container">
<article class = "container">
<img class = "iconos" src="images/music-icon.png" alt = "imagen altavoz">
<h3>Millions of Songs</h3>
<p class = "texto">Millions of Songs There are millions of songs on Spotify</p>
</article>

<article class = "container">
<img class = "iconos" src="images/high-quality-icon.png" alt = "imagen lineas">
<h3>HD Music</h3>
<p class = "texto">Listen to music as if you were listening live</p>
</article>

<article class = "container">
<img class = "iconos" src="images/devices-icon.png" alt = "imagen tlf">
<h3>Stream Everywhere</h3>
<p class = "texto">Stream music on your smartphone, tablet or computer</p>
</article>
</div>



</section>




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.
Expand Down
130 changes: 130 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,133 @@ Green: #00B172
White: #FFF

*/
@import url('https://fonts.googleapis.com/css?family=Poppins');

body {
font-family: 'Poppins';
}

header > div {
padding: 0 25px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid lightgray;
}

.logo {
height: 100px;
width: auto;
}

nav {
width: auto;
display: flex;
justify-content: flex-end;
gap: 5px;
}

nav ul {
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 20px;
}

nav a {
text-decoration: none;
color: black;
/*margin-right: 10px;*/
padding: 40px;
}
nav a:last-child {
margin-rig
}

header > div {
padding: 0 25px;
display: flex;
justify-content: space-between;
align-items: center;
}

.centro {
background-image: url('../images/landing.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 650px;
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center ;
}
.music {
align-self: center;
width: auto;
font-size: 6rem;
font-weight: 200;
margin: 0;
color: #FFF;
}

.free {
align-self: center;
width: auto;
font-size: 1.2rem;
font-weight: 200;
margin: 0;
color: #FFF
}

.whats-on {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.linea {
align-items: center;
font-size: 3rem;
border-bottom: 5px solid #00B172;
padding-bottom: 1px;
}

.max-container {
display: flex;
flex-direction: line;
justify-content: center;
align-items: center;
}

.iconos {
align-self: center;
height: 80px;
width: auto;
}

h3 {
font-size:20px;
color: #00B172;
}

.texto {
justify-self: center;
font-size: 15px;
}

.container {
display: flex;
flex-direction: column;
align-items: center
}

.max-container {
display: flex;
flex-direction: line;
justify-content: space-around;
}