Skip to content

Done - Matthew Kramer #3574

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 3 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
81 changes: 75 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,83 @@
<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" />
<!-- 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>
<nav class="navbar">
<div class="logo">
<img src="./images/spotify-logo.png" alt="Spotify Logo" />
</div>
<ul class="nav-links">
<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>
<section class="hero">
<h1>Music for everyone.</h1>
<p>
Spotify is now free on mobile, tablet and computer. Listen to the right
music, wherever you are.
</p>
</section>
<section class="SpotifyDetails">
<h2>What is Spotify?</h2>
<div class="cards">
<div>
<img src="./images/music-icon.png" alt="Spotify Music" id="music-icon"/>
<h3>Millions of Songs </h3>
<p>
There are millions of songs on Spotify
</p>
</div>
<div>
<img src="./images/high-quality-icon.png" alt="high-quality-music" id="high-quality-icon"/>
<h3>HD Music </h3>
<p>
Listen to music as if you were listening live
</p>
</div>
<div>
<img src="./images/devices-icon.png" alt="Spotify Devices" id="devices-icon"/>
<h3>Stream Everywhere </h3>
<p>
Stream music on your smartphone, tablet or computer
</p>
</div>
</div>
</section>
<section class="kanye-section" >
<div class="Kanye">
<h2>It's as Yeezy as Kanye West</h2>
<div class="kanye-text">
<h3>Search</h3>
<p>
Know what you want to listen to? Just search and hit play.
</p>
</div>
<div class="kanye-text">
<h3>Browse</h3>
<p>
Check out the latest charts, brand new releases and great playlists
for right now.
</p>
</div>
<div class="kanye-text">
<h3>Discover</h3>
<p>
Enjoy new music every Monday with your own personal playlist. Or sit
back and enjoy Radio.
</p>
</div>
</div>
<div class="kanye-image">
<img src="./images/spotify-app.jpg" alt="Kanye West" />
</div>
</section>
</body>
</html>
148 changes: 148 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,151 @@ Green: #00B172
White: #FFF

*/
body {
max-width: 1490px;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
position: fixed;
background-color: white;
width: 100%;
max-width: 1490px;
top: 0;
left: 0;
z-index: 1000;
}
.navbar .logo img {
width: 200px;
height: auto;
}

.nav-links {
display: flex;
gap: 20px;
list-style: none;
}

.nav-links li a {
font-size: 1.2rem;
color: #1A1A1A;
text-decoration: none;
}

.hero {
background-image: url("../images/landing.jpg");
background-size: cover;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
font-weight:normal;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 30px;
text-align: center;
flex-wrap: wrap;
width: 40%;
font-weight: normal;
}

.SpotifyDetails {
display: flex;
flex-direction: column;
align-items: center;
padding: 50px 20px;
}

.SpotifyDetails h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.cards {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
padding: 20px;
}
.SpotifyDetails h3 {
font-size: 1.8rem;
margin-bottom: 10px;
color: #00B172;
}
.SpotifyDetails p {
font-size: 1.2rem;
margin-bottom: 20px;
text-align: center;
width: 60%;
}

.cards img {
width: 100px;
height: auto;
border-radius: 10px;
}

.cards div {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
width: 300px;
height: auto;
padding: 40px;
}

.kanye-section {
background-color: #00B172;
background-image: url("../images/spotify-icon-white.png");
background-repeat: no-repeat;
background-position: center;
background-size: 150px;
padding: 100px 100px;
display: flex;
justify-content: space-between;
}

.Kanye {
flex-direction: column;
align-items: center;
padding-left: 40px;
}

.kanye-text {
color: white;
align-self: center;
line-height: 1.5;
}

.Kanye h2 {
color: white;
font-size: 2.5rem;
margin-bottom: 20px;
border-bottom: 2px solid white;
width: 85%;
}
.Kanye h3 {
color: white;
font-size: 1.8rem;
margin-bottom: 10px;
}
.Kanye p {
font-size: 1rem;
margin-bottom: 20px;
width: 50%;
}
.kanye-section img {
width: 350px;
height: auto;
}