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

Spotify Clone Lab 1st Attempt #3494

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
104 changes: 88 additions & 16 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>
</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>

<nav>
<img class="logo" src="./images/spotify-logo.png" alt="Spotify Logo">

<ul>
<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>

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

<section class="info">

<h2>What’s on Spotify?</h2>

<div class="info-items">
<article>
<img src="./images/music-icon.png" alt="Music Icon">
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify</p>
</article>

<article>
<img src="./images/high-quality-icon.png" alt="High Quality Icon">
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</article>

<article>
<img src="./images/devices-icon.png" alt="Devices Icon">
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</article>
</div>

</section>

<section class="kanye-west">

<div>
<h2>It’s as yeezy as Kanye West.</h2>

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

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

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

<div>
<img class="logo-white" src="./images/spotify-icon-white.png" alt="Spotify Icon White">
</div>

<div>
<img class="kanye-west-screenshot" src="./images/spotify-app.jpg" alt="">
</div>

</section>

</body>

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

*/

body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
padding: 0;
margin: 0;
}

img {
width: 100%;
}

a {
text-decoration: none;
color: unset;
}

nav {
display: flex;
justify-content: space-between;
padding: 20px;
}

.logo {
width: auto;
height: 70px;
}

nav ul {
list-style: none;
display: flex;
justify-content: space-around;
}

nav ul li {
padding: 0px 20px;
font-size: 1.2em;
font-weight: lighter;
}

header {
width: 100%;
height: 300px;
background-image: url("../images/landing.jpg");
background-size: cover;
text-align: center;
color: white;
padding: 200px 0px;
}

header h1 {
font-size: 4em;
}

header p {
font-size: 1.5em;
padding: 0px 450px;
}

.info {
width: 100%;
height: 400px;
text-align: center;
padding: 40px 0px;
}

.info h2 {
font-size: 2em;
text-decoration: underline;
text-decoration-color: #00B172;
text-underline-offset: 15px;
}

.info-items {
display: flex;
justify-content: space-evenly;
padding: 80px;
}

.info-items article {
height: auto;
width: 300px;
}

.info-items article h3 {
font-size: 1.5em;
color: #00B172;
}

.info-items article p {
font-size: 1.3em;
font-weight: 100;
}

.info-items img {
width: auto;
height: 90px;
}

.kanye-west {
width: auto;
height: 500px;
background-color: #00B172;
margin: 40px;
padding: 90px;
display: flex;
justify-content: space-between;
align-items: center;
}

.kanye-west div {
padding: 0px 30px;
}

.kanye-west h2 {
font-size: 2em;
color: white;
text-decoration: underline;
text-decoration-color: white;
text-underline-offset: 15px;
padding-bottom: 20px;

}

.kanye-west article {
color: white;
padding-bottom: 20px;
width: 600px;
}

.kanye-west article h3 {
font-size: 1.7em;
}

.kanye-west article p {
font-size: 1.3em;
}

.logo-white {
height: auto;
width: 150px;
}

.kanye-west-screenshot {
width: auto;
height: 600px;
}