-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
Copy pathindex.html
72 lines (65 loc) · 2.35 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
<!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="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" />
<title>Spotify Clone</title>
<link rel="stylesheet" href="./styles/style.css" />
</head>
<body>
<nav>
<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>
</nav>
<section class="header">
<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>
</section>
<section class="content">
<h2>What’s on Spotify?</h2>
<div class="grid">
<div class="grid-item">
<img src="./images/high-quality-icon.png" class="grid-img" alt="Spotify Music-Icon" />
<h3>Millions of Songs</h3>
<p>There are millions of songs on Spotify.</p>
</div>
<div class="grid-item">
<img src="./images/music-icon.png" class="grid-img" alt="Spotify high-quality-icon" />
<h3>HD Music</h3>
<p>Listen to music as if you were listening live.</p>
</div>
<div class="grid-item">
<img src="./images/devices-icon.png" class="grid-img" alt="Spotify Stream Everywhere" />
<h3>Stream Everywhere</h3>
<p>Stream music on your smartphone, tablet, or computer.</p>
</div>
</div>
</section>
<section class="container">
<div class="container-text">
<h3>It’s as yeezy as Kanye West.</h3>
<hr />
<h2>Search</h2>
<p>Know what you want to listen to? Just search and hit play.</p>
<h2>Browse</h2>
<p>Check out the latest charts, brand new releases and great playlists for right now.</p>
<h2>Discover</h2>
<p>Enjoy new music every Monday with your own personal playlist. Or sit back and enjoy Radio.</p>
</div>
<div class="container-img">
<img src="./images/spotify-icon-white.png" class="spotify-logo" alt="Spotify White logo" />
</div>
<div class="container-img">
<img src="./images/spotify-app.jpg" class="Kanye-img" alt="Spotify App page" />
</div>
</section>
</body>
</html>