Skip to content

desktop and mobile versions #3576

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 2 commits 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
101 changes: 85 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,87 @@
<!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>
<!-- Menu -->
<nav class="navbar">
<img src="./images/spotify-logo.png" alt="Spotify Logo" class="logo">

<input type="checkbox" id="menu-toggle" class="menu-toggle">
<label for="menu-toggle" class="burger">&#9776;</label>
<ul class="menu">
<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>

<!-- Hero section -->
<section class="hero">
<div class="hero__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>
</div>
</section>

<!-- Features section -->
<section class="features">
<h2>What's on Spotify?</h2>
<div class="features__container">
<div class="feature">
<img src="./images/music-icon.png" alt="Sound Icon" class="feature-card-image">
<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="High Quality Icon" class="feature-card-image">
<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="Devices Icon" class="feature-card-image">
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer.</p>
</div>
</div>
</section>

<!-- Green section -->
<section class="green-section">
<img src="./images/spotify-icon-white.png" alt="Spotify Logo" class="green-logo">

<div class="green-content">
<h2 class="green-title">It's as yeezy as Kanye West.</h2>



<h3>Search</h3>
<p>Know what you want to listen to?<br> Just search and hit play.</p>


<h3>Browse</h3>
<p>Check out the latest charts,<br> brand new releases and great<br> playlists for right now.</p>


<h3>Discover</h3>
<p>Enjoy new music every Monday<br> with your own personal playlist.<br> Or sit back and enjoy Radio.</p>


</div>

<div class="green-image">
<img src="./images/spotify-app.jpg" alt="Spotify Player">
</div>
</section>

</body>

</html>
Loading