Skip to content

[ROT-PT-140425]Ricardo Felix #3558

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 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
6 changes: 6 additions & 0 deletions a
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

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.
67 changes: 60 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,67 @@
<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 class="top-bar">
<nav>
<img
src="images/spotify-logo.png"
alt="spotify-logo"
class="spotify-logo"
/>
<ul>
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</nav>
</header>

<section class="section1">
<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="section2">
<h2>What’s on Spotify?</h2>
<div class="article-container">
<article class="article1">
<img src="/lab-css-spotify-clone/images/music-icon.png" alt="music-icon" class="images">
<h3>Millions of Songs</h3>
<p>There are millions of <br> songs on Spotify</p>
</article>
<article class="article1">
<img src="/lab-css-spotify-clone/images/high-quality-icon.png" alt="high-quality-icon" class="images">
<h3>HD Music</h2>
<p>Listen to music as if you <br> were listening live</p>
</article>
<article class="article1">
<img src="/lab-css-spotify-clone/images/devices-icon.png" alt="devices-icon" class="images">
<h3>Stream Everywhere</h2>
<p>Stream music on your <br> smartphone, tablet or <br> computer</p>
</article>
</div>
</section>
<section class="section3">
<div class="kanye-west">
<h2>It’s as yeezy as Kanye West.</h2>
<hr class="hr-line">
<h3>Search</h3>
<p>Know what you want to listen to? <br>Just search and hit play.</p>
<h3>Browse</h3>
<p>Check out the latest charts, <br>brand new releases and great <br>playlists
for right now.</p>
<h3>Discover</h3>
<p>Enjoy new music every Monday <br>with your own personal
playlist. <br>Or sit back and enjoy Radio.</p>
</div>
<img src="/lab-css-spotify-clone/images/spotify-icon-white.png" alt="spotify-icon-white" class="spotify-icon-white">
<img src="/lab-css-spotify-clone/images/spotify-app.jpg" alt="spotify-app" class="Kanye">
</section>
</body>
</html>
125 changes: 119 additions & 6 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,121 @@
/*
Colors:

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

/*Colors:
Text: #1A1A1A;
Green: #00B172;
White: #FFFFFF;
*/
.top-bar {
position: fixed;
top: 0;
left: 0;
width:100%;
background-color:#FFFFFF;
}
.spotify-logo{
width: 200px;
position:fixed;
top:10px;
left:30px;
height:auto;
}
.top-bar ul {
display:flex;
justify-content:flex-end;
list-style: none;
gap: 25px;
}
.top-bar ul li {
margin: 20px 20px 0px 10px;
font-size: 25px;
}
.section1 {
background-image: url(/lab-css-spotify-clone/images/landing.jpg);
background-size: cover;
margin-top:30px;
width: 100%;
height: 800px;
color: white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
.section1 h1{
font-size: 100px;
margin:0 0 30px 0 ;
}
.section1 p{
font-size:30px;
margin-top: 0
}
.section2 {
text-align:center;
padding: 0 20px;
background-color:#FFFFFF;
}
.section2 h2{
margin: 50px 0 80px 0;
font-size: 40px;
}
.section2 {
display: flex;
flex-direction: column;
align-items: center;
}

.article-container {
display: flex;
justify-content: space-evenly;
width: 100%;
}
.article-container h3 {
font-size: 30px;
color:#00B172;
}
.article-container p{
font-size: 20px;
}
.images{
width: 30%;
}
.section3 {
background-color: #00B172;
color: #FFFFFF;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 100px;
}

.kanye-west {
max-width: 30%;
font-size: 30px;
max-width:1000px;
}

.kanye-west h2{
font-size: 50px;
}
.hr-line {
position:relative;
bottom: 30px;
height:5px;
background-color:#FFFFFF;

}
.kanye-west h3 {
font-size: 30px;
}
.kanye-west p {
font-size: 20px;
}
.spotify-icon-white {
width: 150px;
position:absolute;
left : 650px;
}

.Kanye {
width: 350px;
height: auto;
}