forked from OtariOboladze/activitat2-spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (69 loc) · 2.45 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
<!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" />
<title>Spotify Clone</title>
<link href="https://fonts.googleapis.com/css2?family=Arimo&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<nav>
<div class="logo"><img src="images/spotify-logo.png" alt=""></div>
<ul>
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</nav>
<header>
<div class="head_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>
<main>
<p class="main_head">What’s on Spotify?</p>
<div class="middle">
<span>
<img src="images/music-icon.png">
<p class="span_title">Millions of Songs</p>
<p class="span_text">There are millions of songs on Spotify</p>
</span>
<span>
<img src="images/high-quality-icon.png">
<p class="span_title">HD Music</p>
<p class="span_text">Listen to music as if you were listening live</p>
</span>
<span>
<img src="images/devices-icon.png">
<p class="span_title">Stream Everywhere</p>
<p class="span_text">Stream music on your smartphone, tablet or computer</p>
</span>
</div>
<div class="footer">
<div class="kanye">
<h1>It’s as yeezy as Kanye West.</h1>
<span>
<p class="kanye_title"> Search</p>
<p class="kanye_descr">Know what you want to listen to? Just search and hit play.</p>
</span>
<span>
<p class="kanye_title">Browse</p>
<p class="kanye_descr">Check out the latest charts, brand new releases and great playlists for right now.</p>
</span>
<span>
<p class="kanye_title"> Discover</p>
<p class="kanye_descr">Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.</p>
</span>
</div>
<div class="wLogo"><img src="images/spotify-icon-white.png"></div>
<div class="app"><img src="images/spotify-app.jpg"></div>
</div>
</main>
r
</body>
</html>