Skip to content
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
92 changes: 86 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,94 @@
<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" type = "text/css" href="/styles/style.css">
<!-- 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.
<header>
<navbar id = "navbar">
<img src = "images/spotify-logo.png" id = "spotify_logo"/>
<ul class = "list">
<li class = "nav-link">Premium</li>
<li class = "nav-link">Discover</li>
<li class = "nav-link">Help</li>
<li class = "nav-link">Download</li>
</ul>
</navbar>
</header>
<section id = "welcome">
<h1>
Music for everyone.
</h1>
<h5>
Spotify is now free on mobile, tablet and computer. Listen to the
right music, wherever you are.
</h5>
</section>
<section id = "description">
<h2>
What’s on Spotify?
</h2>
<div id = "list_container_container">
<div id = "list_container">
<ul class = "list">
<li class = "desc-link">
<h3>
Millions of Songs
</h3>
There are millions of songs on Spotify
</li>
<li class = "desc-link">
<h3>
HD Music
</h3>
Listen to music as if you were listening live
</li>
<li class = "desc-link">
<h3>
Stream Everywhere
</h3>
Stream music on your smartphone, tablet or computer
</li>
</ul>
</div>
</div>
</section>
<section id = "features">
<div id = "features_container">
<div id = "features_text_container">
<h2>
It’s as yeezy as Kanye West.
</h2>
<br>
<h3>
Search
</h3>
<p>
Know what you want to listen to? Just search and hit play.
</p>
<br>
<h3>
Browse
</h3>
<p>
Check out the
latest charts, brand new releases and great playlists for right now.
</p>
<br>
<h3>
Discover
</h3>
<p>
Enjoy new music every Monday with your
own personal playlist. Or sit back and enjoy Radio.
</p>
</div>
<div id = "features_img_container">
<img src = "/images/spotify-app.jpg"/>
</div>
</div>
</section>

</body>
</html>
98 changes: 97 additions & 1 deletion styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,100 @@ Colors:
Text: 1A1A1A
Green: #00B172
White: #FFF
*/
*/
body, html, main {
margin: 0;
padding: 0;
}

#navbar {
color: white;
position: fixed;
padding: 10px;
background-color: black;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
font-family: Gotham Medium;
}

#spotify_logo {
max-width: 10em;
}

.list {
list-style: none;
}

.nav-link {
display: inline-block;
padding: 0px 20px;
}

#welcome {
background-image: url(/images/landing.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: contain;
background-color: black;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: Gotham Medium;
font-size: 1.5em;
}

#welcome>h1, h5 {
color: white;
}

#description {
color: white;
background-color: black;
padding-top: 100px;
padding-bottom: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: Gotham Medium;
}

.desc-link {
border-style: solid;
border-radius: 2em;
max-width: 12em;
display: inline-block;
padding: 0px 20px 20px;
text-align: center;
}

#features {
padding: 100px;
background-color: #1D8954;
background-image: url(/images/spotify-icon-white.png);
background-repeat: no-repeat;
background-position-x: center;
background-position-y: center;
background-size: 4em;
color: white;
font-family: Gotham Medium;
}

#features_container {
display: flex;
flex-direction: row;
justify-content: space-around;
}

#features_img_container>img {
max-height: 550px;
}

#features_text_container {
width: 400px;
}