Skip to content
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
80 changes: 73 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,80 @@
<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-bar">
<div>
<img src="images/spotify-logo.png" alt="Spotify logo" />
</div>
<div>
<ul>
<li>
<h4><a href="#premium">Premium</a></h4>
</li>
<li>
<h4><a href="#discover">Discover</a></h4>
</li>
<li>
<h4><a href="#help">Help</a></h4>
</li>
<li>
<h4><a href="#download">Download</a></h4>
</li>
</ul>
</div>
</nav>



<header class="header">
<h1>For Everyone.</h1>
<h3>Spotify is now free on mobile tablet and computer. <br>Listen to right music, wherever you are.</h3>
</header>
<h2 class="heading">What's on Spotify?</h2>

<section class="specs">
<div class="spec">
<img class="icon" src="images/music-icon.png" alt="Music logo"/>
<h3>Millions of Songs</h3>
<p>There are millions of songs on spotify</p>
</div>
<div class="spec">
<img class="icon" src="images/high-quality-icon.png" alt="High Quality logo" />
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</div>
<div class="spec">
<img class="icon" src="images/devices-icon.png" alt="devices logo" />
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone,tablet and computer</p>
</div>
</section>

<section class="kanye">

<div class="left">
<h2>It's as yeezy as Kanye West.</h2>
<br>
<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.
</p>
<h3>Discover</h3>
<p>
Enjoy new music every Monday with your own personal playlist.<br />
Or sit back and enjoy Radio.
</p>
</div>
<div class="middle">
<img src="images/spotify-icon-white.png" alt="Spotify white icon" width=" 80px"/>
</div>
<div class="right">
<img src="images/spotify-app.jpg" alt="spotify app page" width="300px" />
</div>
</section>
</body>
</html>
127 changes: 121 additions & 6 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,123 @@
/*
Colors:
*{
box-sizing: border-box;
}

Text: 1A1A1A
Green: #00B172
White: #FFF
body{
margin: 0;
padding: 0;
}

.nav-bar {
background-color: white;
position: fixed;
width: 100%;
height: 60px;
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-bar img{
width: 150px;
}

.nav-bar ul{
list-style: none;
display: flex;
gap: 30px;
}

.nav-bar li{
display: inline;

}

.nav-bar a{
text-decoration: none;
color: black;

}

.header {
background-image: url(/images/landing.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 900px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

.header h1{
color: white;
font-size: 90px;
}

.header h3{
color: white;
font-size: 45px;
}

.specs {

display: flex;
justify-content: space-around;
align-items: flex-start;
gap: 100px;
}

.heading{
text-align: center;
font-size: 35px;
}
.spec{
display: flex;
flex-direction: column;
align-items: center;
width: 50px;
align-items: center;
margin-bottom: 20px;
}

.spec h3{
color: green;
font-weight: 900;
}

.icon{
height: 100px;
width: 100px;

}

.kanye {
background: green;
display: flex;
justify-content: space-around;
align-items: center;
padding: 60px 40px;
}

.kanye .left {
color: white;
width: 50%;
}

.kanye h2 {
font-size: 2.5em;
color:white;
text-decoration: underline;
margin-bottom: 20px;
}

.kanye h3 {
font-size: 1.5em;
color: white;
margin-top: 20px;

}

*/