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

PT_RMT_WD_012025_KAINAT_SANTIAGO #3513

Open
wants to merge 2 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
Binary file added .DS_Store
Binary file not shown.
85 changes: 76 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,83 @@
<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 -->
<title>Spotify - Music for everyone</title>
<link rel="stylesheet" href="styles/style.css" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
</style>
</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>
<img src="images/spotify-logo.png" alt="Spotify logo" />
<ul class="links">
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</nav>
<div id="banner-image">
<div class="intro-content">
<h1>Music for everyone.</h1>
<p>
Spotify is now free on mobile, tablet and computer. Listen to the
right music, wherever you are.
</p>
</div>
</div>
</header>

<section class="features">
<h2>What's on Spotify</h2>
<section class="features-container">
<div class="single-feature">
<img src="images/music-icon.png" alt="music icon" class="icons" />
<h3>Millions of songs</h3>
<p>There are millions of songs on Spotify</p>
</div>
<div class="single-feature">
<img
src="images/high-quality-icon.png"
alt="music icon"
class="icons"
/>
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</div>
<div class="single-feature">
<img src="images/devices-icon.png" alt="music icon" class="icons" />
<h3>Stream everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</div>
</section>
</section>
<footer>
<div class="article-wrapper">
<h2>It’s as yeezy as Kanye West.</h2>
<article>
<h4>Search</h4>
<p>Know what you want to listen to? Just search and hit play.</p>
</article>
<article>
<h4>Browse</h4>
<p>
Check out the latest charts, brand new releases and great playlists
for right now.
</p>
</article>
<article>
<h4>Discover</h4>
<p>
Enjoy new music every Monday with your own personal playlist. Or sit
back and enjoy Radio.
</p>
</article>
</div>
<img src="/images/spotify-icon-white.png" alt="Spotify logo" class="spotify-logo">
<img src="images/spotify-app.jpg" alt="Spotify App" class="spotify-image">

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

*/

body {
box-sizing: border-box;
font-family: "Poppins", sans-serif;
/* background-color: rgb(37, 151, 151); */
margin: 0;
padding: 0;
}

nav {
background-color: white;
position: fixed;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
top: 0;
width: 100%;
padding: 20px;
z-index: 99999;
}




.links {
display: flex;
justify-content: flex-end;
list-style: none;
}

.links li {
margin-right: 20px;
}

nav img {
width: 150px;
height: auto;
}

#banner-image {
height: 700px;
margin: 96px auto;
background-image: url(/images/landing.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
text-align: center;
}

.intro-content {
position: relative;
top:30vh;
margin: 0 auto;
max-width: 700px;
}

.intro-content h1 {
margin: 20px;
font-size: 60px;
}

.intro-content p {
font-size: 24px;
font-weight: 200;
}

.features {
text-align: center;
}

.features-container {
display: flex;
/* height: 300px; */
justify-content: space-around;
align-items: stretch;
flex-wrap: wrap;
}

.features h2 {
margin-bottom: 80px;
font-size: 36px;
text-decoration: underline;
text-decoration-color: #00B172;
text-decoration-thickness: 5px;
text-underline-offset: 5px
}

.single-feature {
padding: 30px;
border-radius: 20px;
border: 1px solid gray;
background-color: rgb(255, 255, 255);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 250px;
box-shadow: 10px 10px 1px #00B172;
}

.icons {
width: 100px;
}

footer {
background-color: #00B172;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 50px;
padding: 85px;
}

footer article {
max-width: 400px;
}

.spotify-logo {
height: 100px;
width: 100px;
position: absolute;
top:47%;
left: 47%;
}

.spotify-image {
height: 415px;
}

.article-wrapper {
color: white;
}