Skip to content

[BER-FT-072025] Alejandra Rodriguez #3588

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 4 commits 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
spotify-prototype.pdf
79 changes: 72 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,80 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="styles/style.css" />
<title>Spotify Clone</title>
<!-- don't forget to link your styles -->
</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>
<nav class="navbar">
<img src="images/spotify-logo.png" alt="Spotify Logo" class="logo" />
<ul class="nav-links">
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</nav>

<div class="hero">
<h1>Music for everyone.</h1>
<p class>
Spotify is now free on mobile, tablet and computer.<br />
Listen to the right music, wherever you are.
</p>
</div>
</header>

<section id="spotify-content">
<h3>What’s on Spotify?</h3>
<hr>
<div>
<article>
<img src = "images/music-icon.png" alt = "speaker icon"/>
<h4>Millions of Songs</h4>
<p class="text">There are millions of songs on Spotify</p>
</article>
<article>
<img src = "images/high-quality-icon.png" alt = "hd icon"/>
<h4>HD Music</h4>
<p class="text">Listen to music as if you were listening live</p>
</article>
<article>
<img src = "images/devices-icon.png" alt = "devices icon"/>
<h4>Stream Everywhere</h4>
<p class="text">Stream music on your smartphone, tablet or computer</p>
</article>
</div>
</section>

<section id="spotify-functions">
<div class="left-block">
<div class="header-underlined">
<h2>It’s as yeezy as Kanye West.</h2>
<hr>
</div>

<div class="features-div">
<article>
<h4>Search</h4>
<p class="text">Know what you want to listen to? Just search and hit play</p>
</article>
<article>
<h4>Browse</h4>
<p class="text">Check out the latest charts, brand new releases and great playlists for right now.</p>
</article>
<article>
<h4>Discover</h4>
<p class="text">Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.</p>
</article>
</div>
</div>

<img src="images/spotify-icon-white.png" alt="Spotify app" class="image-spotify-white-icon">
<img src="images/spotify-app.jpg" alt="Spotify app" class="image-spotify-app">
</section>

</body>
</html>
240 changes: 234 additions & 6 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,236 @@
/*
Colors:
@import url('https://fonts.googleapis.com/css?family=Montserrat:700|Montserrat:100,300,700');

Text: 1A1A1A
Green: #00B172
White: #FFF
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

*/
html, body {
font-family: Montserrat, sans-serif;
color: #FFF;
}

h1, h2, h3, h4, h5, h6 {
font-family: Montserrat, sans-serif;
}

h2{
font-size: 40px;
font-weight: 650;
}

h3{
font-size: 40px;
font-weight: 650;
}

h4{
font-size: 35px;
}

hr{
padding: 2px;
margin: 20px auto 30px;
box-shadow: none;
border: none;
}

.navbar{
position:fixed;
width: 100%;
height: 115px;
display: flex;
background-color: #FFF;
justify-content: space-between;
align-items: center;
padding: 10px 0;
z-index: 1000;
/* border: 5px solid yellow; */
}

.navbar img {
height: 5em;
/* border: 1px solid black; */
margin-left: 50px;

}

.nav-links {
display: flex;
justify-content: space-evenly;
align-items: center;
width: 40%;
height: auto;
/* border: 1px solid black; */
color: #1a1a1a;
}

.nav-links li {
font-size: 24px;
list-style-type: none;
text-align: center;
}

.hero{
/* border: 5px solid aquamarine; */
background-image: url("../images/landing.jpg");
height: 1200px;
/* height: 100vh; */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
background-size: cover;
background-position: center;
}

header h1 {
font-size: 90px;
font-weight: 600;
margin-top: 20px;
/* border: 1px solid #FFF; */
}

header p {
font-size: 35px;
font-weight: 300;
line-height: 1.6;
margin-top: 20px;
transform: scaleY(1.1);
}

#spotify-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin-top: 30px;
}

#spotify-content h3{
color:#1a1a1a;
text-align: center;
transform: scaleY(1.1);
}

#spotify-content hr{
background-color:#00B172;
width: 25%;
}

#spotify-content div{
color: #1a1a1a;
width: 100%;
display: flex;
flex-direction: row;
place-content: center space-evenly;
align-items: center;
height: 400px;
margin-top: 30px;
/* border: 5px solid orange; */
}

#spotify-content div article{
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
width:100%;
/* border: 5px solid blueviolet; */
}

#spotify-content div article img{
height: 130px;
width: 150px;
margin-top: 20px;
/* border: 2px solid purple; */
}

#spotify-content div article h4{
text-align: center;
color:#00B172;
margin-top: 15px;
}

.text{
font-size: 25px;
font-weight: 300;
}

#spotify-content > div > article > p{
/* border: 2px solid brown; */
text-align: center;
/* text-wrap: balance; */
max-width: 300px;
margin-top: 30px;
/* margin-bottom:10px ; */
}

#spotify-functions{
position:relative;
margin: 0 50px 60px ;
padding: 80px 120px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background-color: #00B172;
}

.left-block{
display: flex;
flex-flow: column wrap;
/* justify-content: left; */
/* align-items: flex-start; */
align-content: flex-start;
/* border:1px solid yellow; */
}

.header-underlined{
display: flex;
flex-direction: column;
margin-bottom: 25px;
/* border:1px solid black; */
}

#spotify-functions hr{
background-color: #FFF;
width: 100%;
}
#spotify-functions div article {
/* border:1px solid violet; */
margin-bottom: 20px;
}

#spotify-functions div article h4{
margin: 25px 0;
}

#spotify-functions div article p{
color: #FFF;
display: flex;
flex-direction: row;
background-color: #00B172;
width: 410px;
line-height: 1.5;
}

.image-spotify-app {
/* position:absolute;
top: 15%;
left: 30%; */
margin-top: 60px;
width: 450px;
height: 750px;
}

.image-spotify-white-icon{
position:absolute;
top: 43%;
left: 42%;
width: 170px;
height: 170px;
}