-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (100 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IronHack Lab-2 </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- nav start -->
<nav class="navbar">
<a href="#" class="logo"><img src="images/spotify-logo.png" alt=""></a>
<ul>
<li><a href="#">Premuim</a></li>
<li><a href="#">Discover</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Download</a></li>
</ul>
</nav>
<!-- nav end -->
<!-- main start -->
<!-- header start -->
<header class="header">
<div class="header-text">
<h1>Music for everyone.</h1>
<p>Spotify is now free on mobile, tablet and computer.</p>
<p>Listen to the right music, wherever you are.</p>
</div>
</header>
<!-- header end -->
<!-- main start -->
<main>
<!-- about section start -->
<section class="about">
<div class="about-header">
<h2>What's on Spotify?</h2>
<hr>
</div>
<div class="about-content">
<div>
<img src="images/music-icon.png" alt="">
<div>
<h3>Million of Songs</h3>
<p>There are millions of <br> songs on Spotify</p>
</div>
</div>
<div>
<img src="images/high-quality-icon.png" alt="">
<div>
<h3>HD Music</h3>
<p>Listen to music as if you <br> were listening live</p>
</div>
</div>
<div>
<img src="images/devices-icon.png" alt="">
<div>
<h3>Stream Everywhere</h3>
<p>Stream music on your <br> smartphone, tablet or <br> computer</p>
</div>
</div>
</div>
</section>
<!-- about section end -->
<!-- features section start -->
<section id="features-section" class="container">
<div class="features-section-content">
<div class="features-section-text">
<h2>It's as yeezy as Kanye West. </h2>
<hr>
<div>
<h3>Search</h3>
<p>Know what you want to listen to? <br>
Just search and hit play.</p>
</div>
<div>
<h3>Browse</h3>
<p>Check out the latest charts, <br>
brand new release and great <br>
playlists for right now.</p>
</div>
<div>
<h3>Discover</h3>
<p>Enjoy new music every monday <br>
with your own personal playlist. <br>
Or sit back and enjoy Radio.</p>
</div>
</div>
<div class="spotify-icon">
<img src="images/spotify-icon-white.png" alt="">
</div>
<div class="spotify-app">
<img src="images/spotify-app.jpg" alt="">
</div>
</div>
</section>
<!-- features section end -->
</main>
<!-- main end -->
</body>
</html>