-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (72 loc) · 2.81 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" />
<title>Spotify Clone</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header class="barra-arriba">
<img class="logo" src="./images/spotify-logo.png">
<nav>
<ul class="nav-text">
<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>
</header>
<section class="texto-flotante">
<div>
<h1 class="tf-1">Music for everyone.</h1>
<h2 class="tf-2">Spotify is now free on mobile, tablet and computer. <br> Listen to the
right music, wherever you are.</h2>
</div>
</section>
<section>
<h2 class="centrado cajitas-title">What's on Spotify<span>?</span></h2>
<div class="centereado"><div class="subrayar"></div></div>
<div class="cajitas">
<div class="centrado cajita">
<img class="imagen-cajita" src="./images/music-icon.png">
<h2 class="cajitas-green-title">Millions of Songs</h2>
<h2 class="cajitas-text">There are millions of songs on Spotify</h2>
</div>
<div class="centrado cajita">
<img class="imagen-cajita" src="./images/high-quality-icon.png">
<h2 class="cajitas-green-title">HD Music</h2>
<h2 class="cajitas-text">Listen to music as if you were listening live</h2>
</div>
<div class="centrado cajita">
<img class="imagen-cajita" src="./images/devices-icon.png">
<h2 class="cajitas-green-title">Stream Everywhere</h2>
<h2 class="cajitas-text">Stream music on your smartphone, tablet or computer</h2>
</div>
</div>
</section>
<section>
<div class="fondo-verde">
<h2 class="bottom-text-title">It's as yeezy as Kanye West.</h2>
<div>
<h2 class="bottom-text-1">Search</h2>
<h3 class="bottom-text-2">Know what you want to listen to? Just search and hit play.</h3>
</div>
<div>
<h2 class="bottom-text-1">Browse</h2>
<h3 class="bottom-text-2">Check out the
latest charts, brand new releases and great playlists for right now.</h3>
</div>
<div>
<h2 class="bottom-text-1">Discover</h2>
<h3 class="bottom-text-2">Enjoy new music every Monday with your
own personal playlist. Or sit back and enjoy Radio.</h3>
</div>
<img class="imagen-pos-1" src="./images/spotify-icon-white.png">
<img class="imagen-pos-2" src="./images/spotify-app.jpg">
</div>
</section>
</body>
</html>