Skip to content

spotify clone #3557

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 1 commit 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
51 changes: 44 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,51 @@
<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="/LAB-CSS-SPOTIFY-CLONE/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.
<nav class="nav-bar">
<h1><img src="/LAB-CSS-SPOTIFY-CLONE/images/spotify-logo.png" alt="logo"></h1>
<ul id="right">
<li><a href="#premium"target="_blank">Premium</a></li>
<li><a href="#discover"target="_blank">Discover</a></li>
<li><a href="#help"target="_blank">Help</a></li>
<li><a href="#download"target="_blank">Download</a></li>
</ul>
</nav>
<header>
<img src="/LAB-CSS-SPOTIFY-CLONE/images/landing.jpg">
<h1>Music for everyone.</h1>
<h3>Music for everyone. Spotify is now free on mobile, tablet and computer. Listen to the
right music, wherever you are.</h3>
</header>
<div></div>
<section1>
<h1>What’s on Spotify?</h1>
<div>
<h2>Millions of Songs</h2>
<h3>There are millions of songs on Spotify</h3>
</div>
<div>
<h2>HD Music</h2>
<h3>Listen to music as if you were listening live</h3>
</div>
<div>
<h2>Stream Everywhere</h2>
<h3>Stream music on your smartphone, tablet or computer</h3>
</div>
</section1>
<section2>
<h1>It’s as yeezy as Kanye West.</h1>
<h2>Search</h2>
<h3>Know what you want to listen to? Just search and hit play.</h3>
<h2>Browse</h2>
<h3>Check out the
latest charts, brand new releases and great playlists for right now.</h3>
<h2>Discover</h2>
<h3>Enjoy new music every Monday with your
own personal playlist. Or sit back and enjoy Radio.</h3>
</section2>

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

*/

.nav-bar {
position:fixed;
}
#right {
float: right;
}
header {
background-image: ("/LAB-CSS-SPOTIFY-CLONE/images/landing.jpg");
}