forked from ironhack-labs/lab-css-spotify-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (64 loc) · 2.58 KB
/
index.html
File metadata and controls
72 lines (64 loc) · 2.58 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
<!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 rel="stylesheet" href="styles/style.css">
<!-- don't forget to link your styles -->
</head>
<body>
<header>
<nav>
<img class="nav-logo" src="images/spotify-logo.png" alt="spotify-logo">
<ul class="lista-nav">
<li class="nav-links">Premium</li>
<li class="nav-links">Discover</li>
<li class="nav-links">Help</li>
<li class="nav-links">Download</li>
</ul>
</nav>
</header>
<section class="hero">
<p class="titulo-fondo">Music for everyone.</p>
<p class="mensaje-fondo"> Spotify is now free on mobile, tablet and computer. Listen to the right music, wherever you are.</p>
</section>
<section>
<article class="titulo">
<h2> What’s on Spotify?</h2>
</article>
<article class="bloques">
<article class="caracteristicas">
<img src="images/music-icon.png" alt="music-icon">
<p class="enunciado">Millions of Songs</p>
<p class="texto-enunc">There are millions of songs on Spotify </p>
</article>
<article class="caracteristicas">
<img src="images/high-quality-icon.png" alt="high-quality-icon">
<p class="enunciado">HD Music</p>
<p class="texto-enunc">Listen to music as if you were listening live</p>
</article>
<article class="caracteristicas">
<img src="images/devices-icon.png" alt="devices-icon">
<p class="enunciado">Stream Everywhere</p>
<p class="texto-enunc">Stream music on your smartphone, tablet or computer</p>
</article>
</article>
</section>
<section class="canciones">
<article>
<h3><u>It’s as yeezy as Kanye West. </u></h3>
<h4>Search</h4>
<p>Know what you want to listen to? Just search and hit play. </p>
<h4>Browse</h4>
<p>Check out the latest charts, brand new releases and great playlists for right now. </p>
<h4>Discover</h4>
<p>Enjoy new music every Monday with your
own personal playlist. Or sit back and enjoy Radio.</p>
</article>
<img class="iconospot" src="images/spotify-icon-white.png" alt="spotify-icon-white">
<img class="imagenspot" src="images/spotify-app.jpg" alt="spotify-app">
</section>
</body>
</html>