-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (90 loc) · 2.72 KB
/
Copy pathindex.html
File metadata and controls
90 lines (90 loc) · 2.72 KB
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
<!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="/styles/style.css" />
<title>Spotify Clone</title>
<!-- don't forget to link your styles -->
</head>
<body>
<section id="header">
<header>
<nav>
<img
src="./images/spotify-logo.png"
class="logo"
alt="spotify-logo"
/>
<ul class="nav-links">
<li><a href="#">Premium</li></a>
<li><a href="#">Discover</li></a>
<li><a href="#">Help</li></a>
<li><a href="#">Download</li></a>
</ul>
</nav>
</header>
</section>
<section id="landing">
<img
src="./images/landing.jpg"
class="landing-image"
alt="Imagen de landing"
/>
<h1>Music for everyone.</h1>
<p>
Spotify is now free on mobile, tablet and computer. Listen to the right
music, wherever you are.
</p>
</section>
<section id="features">
<h2>What’s on Spotify?</h2>
<ul class="features-list">
<li>
<img src="./images/music-icon.png" alt="music-icon" />
Millions of Songs
<p>There are millions of songs on Spotify</p>
</li>
<li>
<img src="./images/high-quality-icon.png" alt="high-quality-icon" />
HD Music
<p>Listen to music as if you were listening live</p>
</li>
<li>
<img src="./images/devices-icon.png" alt="devices-icon" />
Stream Everywhere
<p>Stream music on your smartphone, tablet or computer</p>
</li>
</ul>
</section>
<section id="general-info">
<div>
<h2>It’s as yeezy as Kanye West.</h2>
<hr />
<ul>
<li>
Search
<p class="general-info-p">Know what you want to listen to? Just search and hit play.</p>
</li>
<li>
Browse
<p class="general-info-p">
Check out the latest charts, brand new releases and great
playlists for right now.
</p>
</li>
<li>
Discover
<p class="general-info-p">
Enjoy new music every Monday with your own personal playlist. Or
sit back and enjoy Radio.
</p>
</li>
</ul>
</div>
<div><img src="./images/spotify-icon-white.png" width="100px" height="100px" alt="music-icon" /></div>
<div><img src="./images/spotify-app.jpg" alt="spotify-app-img" /></div>
</section>
</body>
</html>