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_012025_RichardNixon #3523

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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
46 changes: 39 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,46 @@
<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.
<header>
<div class="navigation-bar">
<img id="spotifylogo" src="images/spotify-logo.png" alt="Spotify Logo">
<ul class="items-menu">
<li><a href="#"></a>Premium</li>
<li><a href="#"></a>Discover</li>
<li><a href="#"></a>Help</li>
<li><a href="#"></a>Download</li>
</ul>
</div>
<h1>Music for everyone.</h1>
<p>
Spotify is now free on mobile, tablet and computer.<br> Listen to the
right music, wherever you are.
</p>
</header>

<div class="container">
<h1>What's on Spotify?</h1>
<div class="features">
<div class="feature">
<img src="images/music-icon.png" alt="Music Icon" class="icon">
<h2>Millions of Songs</h2>
<p>There are millions of songs on Spotify</p>
</div>
<div class="feature">
<img src="images/high-quality-icon.png" alt="High-Quality Music Icon" class="icon">
<h2>HD Music</h2>
<p>Listen to music as if you were listening live</p>
</div>
<div class="feature">
<img src="images/devices-icon.png" alt="Devices Icon" class="icon">
<h2>Stream Everywhere</h2>
<p>Stream music on your smartphone, tablet or computer</p>
</div>
</div>
</div>
</body>
</html>
94 changes: 87 additions & 7 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,88 @@
/*
Colors:
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}

header {
background-image: url(../images/landing.jpg);
background-position: bottom;
background-size: cover;
height: 850px;
color: white;
padding: 20px;
text-align: center;
}

#spotifylogo {
height: 50px;
}

.navigation-bar {
background-color: white;
padding: 15px 30px;
display: flex;
justify-content: space-between;
align-items: center;
font-family: "Helvetica", sans-serif;
font-size: 1.5em;
color: lightslategray;
}

.items-menu {
list-style-type: none;
display: flex;
margin: 0;
padding: 0;
}

.items-menu li {
margin-right: 20px;
}

.container {
text-align: center;
background: #fff;
padding: 20px;
margin: 20px auto;
width: 90%;
max-width: 1200px;

Text: 1A1A1A
Green: #00B172
White: #FFF

*/
}

.container h1 {
font-size: 24px;
margin-bottom: 20px;
text-decoration: underline #0f9d58;
}

.features {
display: flex;
justify-content: space-around;
gap: 20px;
flex-wrap: wrap;
}

.feature {
max-width: 200px;
text-align: center;
}

.feature .icon {
width: 60px;
height: 60px;
margin-bottom: 10px;
}

.feature h2 {
font-size: 18px;
margin: 10px 0;
color: #0f9d58;
}

.feature p {
font-size: 14px;
color: #666;
}