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

FT_RMT_102024 Pandau Ting #3496

Open
wants to merge 8 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
102 changes: 87 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,90 @@
<!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>
<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/reset.css" />
<link rel="stylesheet" href="./styles/style.css" />
</head>
<body>
<header>
<nav>
<img id="nav-logo" src="/images/spotify-logo.png" alt="spotify logo" />
<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>
</header>

<section class="hero">
<h1>Music for everyone.</h1>
<p>Spotify is now free on mobile, tablet and computer.</p>
<p>Listen to the right music, wherever you are.</p>
</section>

<section class="what-is-on-spotify">
<h2>What’s on Spotify?</h2>

<div class="card-container">
<section class="card">
<img src="/images/music-icon.png" alt="speaker" />
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify</p>
</section>

<section class="card">
<img src="/images/high-quality-icon.png" alt="audio waves" />
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</section>

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

<div class="green">
<section class="green-text">
<h2>It’s as yeezy as Kanye West.</h2>
<section class="green-search">
<h4>Search</h4>
<p>Know what you want to listen to? Just search and hit play.</p>
</section>
<section class="green-browse">
<h4>Browse</h4>
<p>
Check out the latest charts, brand new releases and great playlists
for right now.
</p>
</section>
<section class="green-duscover">
<h4>Discover</h4>
<p>
Enjoy new music every Monday with your own personal playlist. Or sit
back and enjoy Radio.
</p>
</section>
</section>

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

<div class="background-logo-wrapper">
<img
class="background-logo"
src="/images/spotify-icon-white.png"
alt=""
/>
</div>
</div>
</body>
</html>
135 changes: 135 additions & 0 deletions styles/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin : 0;
padding : 0;
border : 0;
font-size : 100%;
font : inherit;
vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}

body {
line-height: 1;
}

ol,
ul {
list-style: none;
}

blockquote,
q {
quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}

table {
border-collapse: collapse;
border-spacing : 0;
}
Loading