forked from ironhack-labs/lab-css-spotify-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (110 loc) · 3.93 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Spotify Clone</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div class="header-wrapper">
<div class="container">
<div class="header-image">
<img
src="https://imgs.search.brave.com/_Vs-w_sooSS6WH0TyxoxyRBbgfxiC_XK_kcb1CZ0oaw/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9sb2dv/ZG93bmxvYWQub3Jn/L3dwLWNvbnRlbnQv/dXBsb2Fkcy8yMDE2/LzA5L1Nwb3RpZnkt/bG9nby5wbmc"
alt=""
/>
</div>
<nav class="header-nav">
<ul>
<li><a href="/premium">Premium</a></li>
<li><a href="/discover">Discover</a></li>
<li><a href="/help">Help</a></li>
<li><a href="/download">Download</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section class="hero">
<div class="container">
<div class="hero-content-wrapper">
<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>
</div>
</div>
</section>
<section class="about-spotify">
<div class="container">
<div class="stylized-headerline">
<h2>What's on Spotify?</h2>
</div>
<div class="spotify-benefits-wrapper">
<div class="spotify-benefits-item">
<img
src="https://cdn-icons-png.flaticon.com/128/608/608417.png"
alt="Millions of Songs"
/>
<h3>Millions of Songs</h3>
<p>There are millions of <br />songs on Spotify</p>
</div>
<div class="spotify-benefits-item">
<img
src="https://cdn-icons-png.flaticon.com/128/7582/7582349.png"
alt="HD Music"
/>
<h3>HD Music</h3>
<p>Listen to music as if you <br />were listening live</p>
</div>
<div class="spotify-benefits-item">
<img
src="https://cdn-icons-png.flaticon.com/128/2777/2777142.png"
alt="Stream Everywhere"
/>
<h3>Stream Everywhere</h3>
<p>Stream music on yout <br />laptop, tablet or <br />computer</p>
</div>
</div>
</div>
</section>
<section class="highlight-box">
<div class="container">
<div class="highlight-box-wrapper">
<div class="spotify-logo">
<img
src="https://imgs.search.brave.com/ysJs0XCx95SDq5vqSjvGGvLRprSwbopIyvrFonSDqVQ/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly93d3cu/ZWRpZ2l0YWxhZ2Vu/Y3kuY29tLmF1L3dw/LWNvbnRlbnQvdXBs/b2Fkcy9TcG90aWZ5/LWljb24tcG5nLXJn/Yi13aGl0ZS5wbmc"
alt=""
/>
</div>
<div class="highlight-box-left">
<h3>It's as yeezy as Kanye West.</h3>
<div class="highlight-box-left-features">
<h4>Search</h4>
<p>Know what you want to listen to? Just search and hit play.</p>
<h4>Browse</h4>
<p>
Check out the latest charts, brand new releases and great
playlists for right now.
</p>
<h4>Discover</h4>
<p>
Enjoy new music every Monday with your own personal playlist. Or
sit back and enjoy Radio
</p>
</div>
</div>
<div class="highlight-box-right">
<img
src="https://preview.redd.it/kanye-is-now-18th-most-listened-to-on-spotify-v0-02qi0pk7gj2c1.jpg?width=1080&crop=smart&auto=webp&s=085dd2aaa1d3d57fcb1ba81cf6bde9d0f302bce9"
alt="Spotify Music Screenshot"
/>
</div>
</div>
</div>
</section>
</body>
</html>