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

lab submission #3512

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
76 changes: 69 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,76 @@
<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.
<nav class="nav">
<img src="./images/spotify-logo.png" alt="spotify logo">
<div class="nav-selection">
<a href="https://www.spotify.com/premium/">Premium</a>
<a href="https://open.spotify.com/genre/discover-page">Discover</a>
<a href="https://support.spotify.com/de/">Help</a>
<a href="https://www.spotify.com/de-en/download/other/">Download</a>
</div>
</nav>
<header class="header">
<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>

<main>
<section>
<div class="intro-head">
<h2>What’s on Spotify?</h2>
<hr>
</div>

<div class="intro">
<article class="container">
<img src="./images/music-icon.png" alt="music icon">
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify</p>
</article>

<article class="container">
<img src="./images/high-quality-icon.png" alt="sound wave icon">
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</article>

<article class="container">
<img src="./images/devices-icon.png" alt="device icon">
<h3> Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</article>
</div>

</section>

<section class="ye">

<section class="ye-text">
<h2>It’s as yeezy as Kanye West.</h2>
<hr>
<div class="ye-content">
<h3>Search</h3>
<p>Know what you want to listen to? Just search and hit play.</p>
<h3>Browse</h3>
<p>Check out the
latest charts, brand new releases and great playlists for right now.</p>
<h3>Discover</h3>
<p>Enjoy new music every Monday with your
own personal playlist. Or sit back and enjoy Radio.</p>
</div>

</section>

<img src="./images/spotify-app.jpg" alt="spotify app with ye">
</section>
</main>



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

*/
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
margin: 0;
padding: 0;

}

/* Set the font */
body {
font-family: "Helvetica", sans-serif;
}

h1{
font-size: 80px;
font-weight: bolder;
}

p{
margin-top: 10px;
font-size: 20px;
font-weight: 100;
}

h2{
text-align: center;
font-size: 40px;
}

h3{
font-size: 35;

}

.nav{
display: flex;
justify-content: space-between;
align-items: center;
/* border: 3px black solid; */
}
.nav>img{
height: 30px;
}
.nav-selection{
width: 50%;
/* border: 3px green solid; */
display: flex;
justify-content: space-around;
}
.nav-selection>a{
text-decoration: none;
color: rgb(68, 65, 65);
}

.header{
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
height: 600px;
background-image: url("../images/landing.jpg");
background-size: cover;
background-position: center;
color:white
}

.intro{
display: flex;
justify-content: space-around;
padding: 20px 0;
/* border: 3px red solid; */
}

.intro h3{
color: #00B172;
}

.intro-head > hr{
width: 55%;
height: 5px;
background-color: black;
border: none;
border-radius: 10px;
size: 20px;
}

.container{
/* border: 3px green solid; */
width:30%;
text-align: center;
}
.container>img{
height: 150px;
/* border: 3px black solid; */
}

.ye{
background-image: url("../images/spotify-icon-white.png");
background-color: #00B172;
background-repeat: no-repeat;
background-position: center;
background-size: 90px ;
color: #FFF;
display: flex;
justify-content: space-around;
}

.ye-text{
width:40%;
margin-right:30px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* text-align: left; */
/* border: 3px black solid; */
}

.ye-content{
width: 80%;
/* border: 3px black solid; */
margin: 10px
}

.ye-content h3{
margin-bottom: 10px;
}
.ye-content p{
margin-bottom: 20px;
}

.ye-text > hr{
width: 65%;
height:3px;
background-color: #FFF;
border: none;
border-radius: 10px;

}

.ye img{
height: 520px;
margin: 20px 0;
}