Skip to content

WD-PT-SEPT24-ES- Mar Cardús #3551

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
110 changes: 103 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,111 @@
<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="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Signika:wght@300&display=swap"
rel="stylesheet"
/>

<link href="./styles/style.css" type="text/css" rel="stylesheet" />

<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.
<header>
<img src="./images/spotify-logo.png" alt="Spotify Logo" />

<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>
</header>
<main>
<section class="hero-section" id="hero-section">
<h1>Music for everyone.</h1>
<p>
Spotify is now free on mobile, tablet and computer. Listen to the
right music, wherever you are.
</p>
</section>

<div class="container">
<section class="whats-on-spotify" id="whats-on-spotify">
<h2 class="section-title">What’s on Spotify?</h2>

<div class="row">
<div class="column">
<img src="./images/music-icon.png" alt="volume symbol" />
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify</p>
</div>

<div class="column">
<img
src="./images/high-quality-icon.png"
alt="sound waves symbol"
/>
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</div>

<div class="column">
<img src="./images/devices-icon.png" alt="devices symbol" />
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</div>
</div>
</section>

<section class="spotify-features" id="spotify-features">
<div>
<h2 class="section-title section-title--white">
It’s as yeezy as Kanye West.
</h2>
<div class="feature-blocks">
<h3>Search</h3>
<p>Know what you want to listen to? Just search and hit play.</p>
</div>

<div class="feature-blocks">
<h3>Browse</h3>
<p>
Check out the latest charts, brand new releases and great
playlists for right now.
</p>
</div>

<div class="feature-blocks">
<h3>Discover</h3>
<p>
Enjoy new music every Monday with your own personal playlist. Or
sit back and enjoy Radio.
</p>
</div>
</div>

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

<div>
<img
class="spotify-app"
src="./images/spotify-app.jpg"
alt="spotify app running in mobile phone"
/>
</div>
</section>
</div>
</main>
</body>
</html>
</html>
147 changes: 146 additions & 1 deletion styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,150 @@ Colors:
Text: 1A1A1A
Green: #00B172
White: #FFF

*/

.main {
margin-top: 60px;
}

body {
color: #1a1a1a;
font-family: "Montserrat", Arial, sans-serif;
margin: 0;
box-sizing: border-box;
}

header {
position: fixed;
top: 0;
width: calc(100vw - 80px);
display: flex;
justify-content: space-between;
align-items: center;
/* margin: 0 40px; */
padding: 15px 40px;
background-color: #fff;
}

header img {
width: 10%;
height: auto;
}

header nav {
display: inline;
}

header ul {
list-style: none;
padding: 0;
margin: 0;
display: inline;
}

header ul li {
display: inline;
padding: 0 9px;
}

header ul li > a {
text-decoration: none;
color: #1a1a1a;
}

.hero-section {
background-image: url("../images/landing.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width: 100vw;
max-width: 100%;
height: calc(100vh - 60px);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #fff;
}

.hero-section h1 {
font-size: 65px;
}

.hero-section p {
font-size: 1.5em;
width: 550px;
font-weight: normal;
text-align: center;
}

.whats-on-spotify {
text-align: center;
margin: 25px;
}

.spotify-features {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #00b172;
color: #fff;
padding: 90px;
}

.feature-blocks {
width: 220px;
font-size: 1.1em;
line-height: 1.6;
}

.feature-blocks:first-of-type {
padding-top: 30px;
}

.spotify-white-icon {
width: 120px;
height: auto;
}

.spotify-app {
width: 250px;
height: auto;
}

.section-title {
padding-bottom: 5px;
border-bottom: 3px solid #00b172;
display: inline;
}

.section-title--white {
border-color: #fff;
font-size: 26px;
letter-spacing: 1.5px;
}

.row {
display: flex;
justify-content: space-evenly;
margin-top: 25px;
}

.row .column {
text-align: center;
width: 200px;
}

.row .column img {
width: auto;
height: 60px;
}

.row .column h3 {
color: #00b172;
font-size: 1.5em;
}

.container {
margin: 0 35px;
}