Skip to content
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

Feedback #1

Open
wants to merge 3 commits into
base: feedback
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
123 changes: 114 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,120 @@
<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" />
<title>Spotify</title>
</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>
<div>
<div>
<img
class="spotify-logo"
src="images/spotify-logo.png"
alt="spotify logo"
/>
</div>

<nav id="page-nav">
<label for="hamburger">&#9776;</label>
<input type="checkbox" id="hamburger" />

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

<div class="img-container">
<img id="img-back" src="images/landing.jpg" alt="landing picture" />
<div class="centered-text">
<span class="centered-title">Music for everyone.</span> <br />
<br />
<span class="centered-subtitle"
>Spotify is now free on mobile, tablet and computer.</span
>
<br />
<span class="centered-subtitle"
>Listen to the right music, wherever you are.</span
>
</div>
</div>

<!-- Section 1 -->
<section id="advantages">
<h1><span>What’s on Spotify?</span></h1>
<div class="external-div">
<div class="internal-div">
<img src="images/music-icon.png" alt="music icon" />
<h2>Millions of Songs</h2>
<p>
There are millions of <br />
songs on Spotify
</p>
</div>

<div class="internal-div">
<img src="images/high-quality-icon.png" alt="high quality icon" />
<h2>HD Music</h2>
<p>
Listen to music as if you <br />
were listening live
</p>
</div>

<div class="internal-div">
<img src="images/devices-icon.png" alt="devices icon" />
<h2>Stream Everywhere</h2>
<p>
Stream music on your <br />
smartphone, tablet or computer
</p>
</div>
</div>
</section>

<!-- Section 2 -->
<section id="green-section">
<div class="external-div">
<div class="internal-div">
<h1><span>It’s as yeezy as Kanye West.</span></h1>
<h2>Search</h2>
<p>
Know what you want to listen to? <br />
Just search and hit play.
</p>

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

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

<div class="internal-div2">
<img
class="white-spotify"
src="images/spotify-icon-white.png"
alt="spotify icon white"
/>
</div>

<div class="internal-div3">
<img class="app-img" src="images/spotify-app.jpg" alt="spotify app" />
</div>
</div>
</section>
</body>
</html>
</html>
Loading