forked from daedraMex/css_clone_practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (74 loc) · 2.58 KB
/
index.html
File metadata and controls
80 lines (74 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
73
74
75
76
77
78
79
80
<!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>
<!-- don't forget to link your styles -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header>
<img src="./images/spotify-logo.png" alt="logo de la pagina">
<nav>
<ul>
<li>Premium</li>
<li>Discover</li>
<li>Help</li>
<li>Download</li>
</ul>
</nav>
</header>
<main>
<h2>Music for everyone.</h2>
<p>Spotify is now free on mobile, tablet and computer. <br>
Listen to theright music, wherever you are.</p>
</main>
<section id="whatsOn">
<h3>What’s on Spotify?</h3>
<hr>
<div class="whatsOn__group">
<div>
<img src="./images/music-icon.png" alt="logo de sonido">
<h6>Millions of Songs</h6>
<p>There are millions of songs on Spotify</p>
</div>
<div>
<img src="./images/high-quality-icon.png" alt="logo de calidad de audio">
<h6>HD Music</h6>
<p>Listen to music as if you were listening live</p>
</div>
<div>
<img src="./images/devices-icon.png" alt="logo de dispositivos">
<h6>Stream Everywhere</h6>
<p>Stream music on your <br> smartphone, tablet or computer</p>
</div>
</div>
</section>
<section class="green-section">
<div>
<h3 class="green__h3">It’s as yeezy as Kanye West.</h3>
<hr>
<div>
<h3>Search</h3>
<p>Know what you want to listen to? <br> Just search and hit play.</p>
</div>
<div>
<h3>Browse</h3>
<p>Check out the latest charts, <br> brand new releases and great <br> playlists for right now.</p>
</div>
<div>
<h3>Discover</h3>
<p>Enjoy new music every Monday <br> with your
own personal playlist. <br> Or sit back and enjoy Radio.</p>
</div>
</div>
<img class="spotify-ico" src="./images/spotify-icon-white.png" alt="logo de spotify">
<img class="spotify-ico-app"src="./images/spotify-app.jpg" alt="imagen de muestra de la app">
</section>
<!--
-->
</body>
</html>