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
62 changes: 55 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,61 @@
<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
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.
<Know>
<div class="nav-bar">
<img src="/images/spotify-logo.png" width="150px" alt="logo"/>
<ul>
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</div>
<section class="box1">
<div class="title-text">Music for everyone.</div>
<p>
Spotify is now free on mobile, tablet and computer.<br> Listen to the right
music, wherever you are.
</p>
</section>
<div class="middle">

<h2>What's on Spotify?</h2>

<section class="box2">
<div class="post">
<img src="/images/music-icon.png" alt="horn" />
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify</p>
</div>
<div class="post">
<img src="/images/high-quality-icon.png" alt="soundwave" />
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</div>
<div class="post">
<img src="/images/devices-icon.png" alt="devices" />
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</div>
</section>
</div>
<div class="footer">
<article class="footer-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>
<img src="/images/spotify-icon-white.png" alt="logo-spotify" width="100px"/>
<img src="/images/spotify-app.jpg" alt="spotify-app" width="30%" />
</div>
</body>
</html>
103 changes: 101 additions & 2 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,107 @@
/*
/*
Colors:

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

*/
*/
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

.nav-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}

ul {
list-style: none;
display: flex;
align-items: center;
gap: 25px;
color: #1a1a1a;
}

.box1 {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
background-image: url("/images/landing.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
padding: 200px 0px;
letter-spacing: 2px;
}
.box1 p {
font-size: 15px;
line-height: 25px;
}

.title-text {
font-size: 48px;
margin: 15px;
font-weight: 800;
}

.middle {
margin: 40px 30px;
text-align: center;
}

.box2 {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}

.post {
text-align: center;
flex-direction: column;
margin: 20px;
color: #1a1a1a;
}

.post h3 {
color: #00b172;
margin: 10px;
}

.post img {
width: 100px;
}

.footer {
background-color: #00b172;
display: flex;
justify-content: center;
align-items: center;
padding: 40px;
margin: 0 20px;
}

.footer-text {
color: #fff;
}

.footer img {
margin: 40px;
}

.footer h3 {
margin: 20px 0;
}

.footer h2 {
border-bottom: 3px #fff solid;
padding-bottom: 10px;
}