forked from ironhack-labs/lab-css-spotify-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
<title>Spotify Clone</title>
<!-- don't forget to link your styles -->
</head>
<body>
<div class="container">
<header>
<div class="header-wrapper">
<img src="./images/spotify-logo.png" alt="spotify-logo">
<ul>
<li>
<a href="#">Premium</a>
</li>
<li>
<a href="#">Discover</a>
</li>
<li>
<a href="#">Help</a>
</li>
<li>
<a href="#">Download</a>
</li>
</ul>
</div>
</header>
<section class="landing">
<h1>Music for everyone.</h1>
<article>
Spotify is now free on mobile, tablet and computer.
<br>
Listen to the right music, wherever you are.
</article>
</section>
<section class="section-services">
<h2>What's on Spotify?</h2>
<div class="services-container">
<div>
<img src="./images/music-icon.png" alt="music">
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify</p>
</div>
<div>
<img src="./images/high-quality-icon.png" alt="hd">
<h3>HD Music</h3>
<p>Listen to music as if you were listening live</p>
</div>
<div>
<img src="./images/devices-icon.png" alt="devices">
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet or computer</p>
</div>
</div>
</section>
<section class="green-section">
<div class="logo-wrap">
<img src="./images/spotify-icon-white.png" alt="logo" id="logo">
</div>
<div>
<h2>It's as yeezy as Kanye West.</h2>
<h3>Search</h3>
<article>
Know what you want to listen to? Just search and hit play
</article>
<h3>Browse</h3>
<article>
Know what you want to listen to? Just search and hit play
</article>
<h3>Discover</h3>
<article>
Know what you want to listen to? Just search and hit play
</article>
</div>
<img src="./images/spotify-app.jpg" alt="app">
</section>
</div>
</body>
</html>