Skip to content
Open

done #96

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
169 changes: 157 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,163 @@
<!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

<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 -->
<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.
</body>
</html>
own personal playlis-t. Or sit back and enjoy Radio. -->

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

<main>
<section class="hero">
<img src="images/landing.jpg" alt="Hero Image">
<h1>Music for everyone.</h1>
<p>Spotify is now free on mobile, tablet, and computer.</p>
</section>

<section class="features">
<div class="feature">
<img src="images/music-icon.png" alt="Millions of Songs">
<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">
<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">
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet, or computer.</p>
</div>
</section>


</main>

<footer>
</footer> -->


<!-- ________________________________________________ -->

<main>
<header class="header">
<div class="header-logo">
<img src="images/spotify-logo.png" alt="">

</div>
<nav class="header-list">
<ul class="header-ul">
<li><a href="#">Premium</a></li>
<li><a href="#">Discover</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Download</a></li>
</ul>
</nav>
</header>


<section class="hero">
<!-- <div class="img-hero">
<img src="images/landing.jpg" alt="">
</div> -->
<div class="headings-hero">
<h1>Music for everyone.</h1>
<p>Spotify is now free on mobile, tablet and computer. <br>Listen to the right music, wherever you are.</p>
</div>
</section>

<section class="about">
<div class="heading-about">
<h3> What's on Spotify?</h3>

</div>
<div class="about-content">

<div class="feature">
<img src="images/music-icon.png" alt="">
<h4>Millions of Songs</h4>
<p>There are millions of songs on spotify</p>
</div>
<div class="feature">
<img src="images/high-quality-icon.png" alt="">
<h4>HD Music</h4>
<p>Listen to music as if you were listening live</p>
</div>
<div class="feature">
<img src="images/devices-icon.png" alt="">
<h4>Stream Everywhere</h4>
<p>Stream music on your smartphone, tablet or computer</p>
</div>
</div>
</section>

<footer>
<section class="footer-section">
<div class="f-head">
<h2>It's as yeezy as Kanye West.</h2>
</div>
<div class="first-sec">


<div class="footer-div">

<div class="ftr-box">
<h4>Search</h4>
<p>Know what you want to listen to? <br>Just search and hit play.</p>
</div>
<div class="ftr-box">
<h4>Browse</h4>
<p>Check out the latest charts, brand new releases and great playlists for right now.</p>
</div>
<div class="ftr-box">
<h4>Discover</h4>
<p>Enjoy new music every Monday
with your own personal playlist.
Or sit back and enjoy Radio.</p>
</div>
</div>
<div class="ftr-img">
<img src="images/spotify-icon-white.png" alt="">
</div>

</div>
</div>


</section>
<section class="footer-img">
<div class="section-img">
<img src="images/spotify-app.jpg" alt="">
</div>
</section>
</footer>

</main>
</body>

</html>
Loading