Skip to content
Open

done #113

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
55 changes: 47 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,55 @@
<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 -->
<link rel="stylesheet" href="styles/style.css" />
</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.
<!-- Navbar -->
<nav class="navbar">
<img src="images/spotify-logo.png" alt="Spotify Logo" class="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>

<!-- Hero Section -->
<header class="hero">
<h1>Music for everyone.</h1>
<p>Spotify is now free on mobile, tablet, and computer.</p>
</header>

<!-- What is on Spotify Section -->
<section class="features">
<div class="feature">
<h2>Millions of Songs</h2>
<p>No credit card needed.</p>
</div>
<div class="feature">
<h2>Easy Listening</h2>
<p>Stream instantly.</p>
</div>
<div class="feature">
<h2>Make it Yours</h2>
<p>Create your own playlists.</p>
</div>
</section>

<!-- Green Section -->
<section class="green-section">
<div class="text-container">
<h2>Get Spotify Free</h2>
<p>Listen to millions of songs for free.</p>
</div>
<img src="images/spotify-app.png" alt="Spotify App" class="spotify-app" />
<img
src="images/spotify-logo.png"
alt="Spotify Logo"
class="spotify-logo"
/>
</section>
</body>
</html>
67 changes: 61 additions & 6 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,63 @@
/*
Colors:
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}

Text: 1A1A1A
Green: #00B172
White: #FFF
.navbar {
position: fixed;
top: 0;
width: 100%;
display: flex;
justify-content: space-between;
padding: 10px 20px;
background-color: black;
}

*/
.navbar .logo {
width: 100px;
}

.navbar ul {
list-style: none;
display: flex;
gap: 20px;
}

.navbar ul li a {
color: white;
text-decoration: none;
}

.hero {
background-image: url("../images/spotify-background.jpg");
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
}

.features {
display: flex;
justify-content: space-around;
padding: 50px;
}

.green-section {
background-color: #1db954;
color: white;
display: flex;
align-items: center;
padding: 50px;
position: relative;
}

.spotify-logo {
position: absolute;
top: 20px;
left: 20px;
width: 50px;
}