Skip to content
Open

Spotify #3625

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
60 changes: 53 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,61 @@
<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 -->
<!-- don't forget to link your styles --><!-- don't forget to link your styles --><!-- 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 >
<dvc class="logo"></dvc>
<nav >
<ul class="nav-links">
<li><a href="#">Premium</a></li>
<li><a href="#">Discover</a></li>
<li><a href="#">Help</a></li>
<li><a href="#" class="download-btn">Download</a></li>
</ul>
</nav>
</header>
<section class="Spotify-free">
<div class="Spotify-content">
<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>
<section class="whats">
<h2 calass="title1">What’s on Spotify?</h2>
</section>
<section class="features">
<div class="icon1">
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify </p>
</div>
<div class="icon2">
<h4 >HD Music</h4>
<p>Listen to music as if you were listening live </p>
</div>
<div class="icon3">
<h5> Everywhere Stream</h5>
<p>Stream music on your smartphone, tablet</p>
</div>
</section>
<section class="yeezy">

<article class="yeezy-text">
<h2>It’s as yeezy as Kanye West.</h2>

<h3>Search</h3>
<p>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>
</article>

<aside class="yeezy-image"></aside>

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

*/
header {
background-color: #FFF;
justify-content: space-between;
padding: 15px 40px;
display: flex;
}
.logo {
background-image: url("../images/spotify-logo.png");
width: 150px;
height: 50px;
background-size: contain;
background-repeat: no-repeat;
}
.nav-links {
list-style: none;
display: flex;
text-align-last: right;
gap: 25px;
margin-left: auto;
}
.nav-links li {
margin: 0 15px;
}
.nav-links a{
text-decoration: none;
color: #1A1A1A;
font-weight: bold;
font-size: 16px;
}
.download-btn {
background-color: #00B172;
color: #FFF;
padding: 10px 20px;
border-radius: 20px;
}
.download-btn:hover {
background-color: #019a5b;
transition: background-color 0.3s ease;
}

.Spotify-free {
background-image: url(../images/landing.jpg);
background-size: cover;
color: white;
height: 600px;
display: flex;
padding: 100px 20px;
align-items: center;
justify-content: center;
}
h1 {
font-size: 40px;
margin-bottom: 20px;
text-align: center;
text-transform: capitalize;
font-family: "Arial", sans-serif;
}
.Spotify-content p {
font-size: 20px;
text-align: center;
font-family: "Arial", sans-serif;
}

.whats {
display: flex;
justify-content: center;
}

.title1 {
text-align: center;
margin: 20px 0;
font-size: 28px;
font-family: "Arial", sans-serif;
}

.features {
display: flex;
justify-content: center;
gap: 50px;
margin: 60px 0;
text-align: center;
}

.feature-box {
width: 260px;
}

.icon1::before,
.icon2::before,
.icon3::before {
content: "";
display: block;
width: 80px;
height: 80px;
margin: 0 auto 15px;
background-repeat: no-repeat;
background-size: contain;
}
.icon1::before {
background-image: url("../images/music-icon.png");
}
.icon2::before {
background-image: url("../images/high-quality-icon.png");
}
.icon3::before {
background-image: url("../images/devices-icon.png");
}
.feature-item p {
font-size: 16px;
color: #555;
}

.feature-icon {
width: 80px;
height: auto;
margin-bottom: 15px;
}
.features h3, h4, h5 {
color: #00B172;
font-size: 22px;
margin: 10px 0;
}
.features p {
font-size: 16px;
color: #1A1A1A;
}

.yeezy {
background-image: url("../images/spotify-icon-white.png");
background-size: 100px;
background-position: center;
background-repeat: no-repeat;
background-color: #00B172;
color: #FFF;
display: flex;
justify-content: space-between;
align-items: center;
padding: 60px 80px;
}

.yeezy-text {
max-width: 450px;
}

.yeezy-text h2 {
font-size: 32px;
margin-bottom: 25px;
font-family: Arial, sans-serif;
position: relative;
padding-bottom: 8px;
}

.yeezy-text h2::after {
content: "";
width: 100px;
height: 3px;
background-color: #fff;
position: absolute;
left: 0;
bottom: 0;
}

.yeezy-text h3 {
font-size: 22px;
margin-top: 25px;
margin-bottom: 8px;
font-family: Arial, sans-serif;
}

.yeezy-text p {
font-size: 16px;
line-height: 1.5;
font-family: Arial, sans-serif;
}

.yeezy-image {
width: 400px;
height: 450px;
background-image: url("../images/spotify-app.jpg");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}