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 Goncalo Neves & Miguel Bastos #3520

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
54 changes: 50 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,58 @@
<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
<header class="navbar">

<img src="images/spotify-logo.png" alt="spotify-logo" class="spotify-logo">
<div>
<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>
</div>


</header>

<section class="music-image">

<img src="images/landing.jpg" alt="landing" class="landing">
<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>
</section>

<section class ="what-on-spotify">
<h2>What’s on Spotify?</h2>
<div class = "icons">
<div>
<img src="images/music-icon.png" alt="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">
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</div>
<div>
<img src="images/devices-icon.png" alt="devices">
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</div>
</div>



</section>




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.
Expand Down
104 changes: 104 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,107 @@ Green: #00B172
White: #FFF

*/

* {
margin: 0;
padding: 0;

}
.navbar{
width: 98vw;
height: 10vh;
padding: 14px 0;
display: flex;
justify-content: space-between;
align-items:center;
color: black;
}

.spotify-logo{
width: auto;
height: 10vh;
}

ul {
display: flex;
list-style-type: none;
gap: 10px;
flex-direction: row;
justify-content: space-between;
}

a:link{text-decoration: none;}
a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
a:active{text-decoration: none;}
a{color: inherit;}

.music-image{
width: 98vw;
height: 100vh;
display: flex;
justify-content: center;
}

.landing{
width: 100%;
height: 650px;
position: relative;

}

.music-image h1{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #FFF;
font-size: 3rem;
}

.music-image p {
position: absolute;
top: 65%;
left: 50%;
transform: translate(-50%, -50%);
color: #FFF;
font-size: 2rem;}

.what-on-spotify {
font-size: 50px;
margin-top: 210px;
flex-direction: column;
padding-left: 50px;
padding-right: 50px;
display: flex;
justify-content: center;
/* text-decoration: underline;
text-decoration-color: green; */
align-items: center;
gap: 50px;
}

.icons{
display: flex;
justify-content: space-evenly;
align-items: center;

}
.icons img{
width: 100px;
}

/* .icons h3 {
display: flex;
justify-content: center;
align-items: center;
} */

.icons div {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width:3%;
gap: 20px;
}