Skip to content
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
89 changes: 73 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,75 @@
<!DOCTYPE html>
<html lang="en">
<head>
<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 -->
</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.
</body>
</html>

<head>
<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>
<link rel="stylesheet" href="styles/style.css">
</head>

<body>

<header>
<nav>
<img src="images/spotify-logo.png" alt="Spotify Logo" class="logo">
<ul class="nav-links">
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</nav>
</header>

<section class="main-banner" style="background-image: url('images/landing.jpg')">
<div class="banner-content">
<h1>Music for everyone.</h1>
<p>Spotify is now free on mobile, tablet and computer.</p>
<p>Listen to the right music, wherever you are.</p>
</div>
</section>

<section class="features">
<h2>What’s on Spotify?</h2>
<div class="feature-items">
<div class="feature">
<img src="images/music-icon.png" alt="Millions of Songs Icon">
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify</p>
</div>
<div class="feature">
<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="feature">
<img src="images/devices-icon.png" alt="Stream Everywhere Icon">
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</div>
</div>
</section>

<section class="kanye-section">
<div class="kanye-text">
<h3>It’s as yeezy as Kanye West.</h3>
<h2><strong>Search</strong></h2>
<p>Know what you want to listen to? Just search and hit play.</p>
<h2><strong>Browse</strong></h2>
<p>Check out the latest charts, brand new releases and great playlists for right now.</p>
<h2><strong>Discover</strong></h2>
<p>Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.</p>
</div>
<div class="spotify-logo-container">
<img src="images/spotify-icon-white.png" alt="Spotify Logo" class="spotify-white-logo">
</div>
<div class="kanye-image">
<img src="images/spotify-app.jpg" alt="Kanye West Spotify">
</div>
</section>

</body>

</html>
141 changes: 135 additions & 6 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,137 @@
/*
Colors:
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

Text: 1A1A1A
Green: #00B172
White: #FFF
header {
position: fixed;
width: 100%;
background-color: white;
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 50px;
}

*/
.logo {
height: 40px;
}

nav {
display: flex;
align-items: center;
width: 100%;
}

.nav-links {
list-style-type: none;
display: flex;
gap: 20px;
margin-left: auto;
}

.main-banner {
background-size: cover;
background-position: center;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
}

.banner-content h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}

.banner-content p {
font-size: 1.2rem;
}


.features {
padding: 60px 50px;
text-align: center;
}

.features h2 {
text-decoration: underline;
text-decoration-color: #02a33a;
}

.features h3 {
font-size:larger;
color: #02a33a;
margin-bottom: 20px;
}

.feature-items {
display: flex;
justify-content: space-between;
margin-top: 30px;
}

.feature {
width: 30%;
text-align: center;
}

.feature img {
height: 50px;
margin-bottom: 10px;
}

.kanye-section {
display: flex;
padding: 60px 50px;
background-color: #5cb77c;
color: white;
position: relative;
}

.kanye-text {
width: 60%;
padding-right: 30px;
position: relative;
}
.kanye-text h3{
text-decoration: underline;
margin-bottom: 10px;
font-size: larger;
}

.kanye-text h2{
margin-bottom: 10px;
}

.spotify-logo-container {
display: flex;
justify-content: center;
align-items: center;
width: 10%;
}

.spotify-white-logo {
width: 70px;
padding-right: 25px;
}


.kanye-image {
width: 40%;
display: flex;
align-items: center;
justify-content: center;
}

.kanye-image img {
width: 100%;
max-width: 300px;
}

.kanye-text p {
margin-bottom: 10px;
}