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
98 lines (92 loc) · 3.01 KB
/
index.html
File metadata and controls
98 lines (92 loc) · 3.01 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
91
92
93
94
95
96
97
98
<!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>
<nav class="menu-container">
<img class="logonav" src="images/spotify-logo.png" alt="Spotify logo" />
<div class="nav-container">
<a href="#" class="enlaces"> Premium</a>
<a href="#" class="enlaces"> Discover</a>
<a href="#" class="enlaces"> Help</a>
<a href="#" class="enlaces"> Download</a>
</div>
</nav>
<header class="background_image">
<h1>Music for everyone</h1>
<p class="intro">Spotify is now free on mobile, tablet and computer.</p>
<p class="intro">Listen to the right music, wherever you are.</p>
</header>
<section class="spotify">
<h2 class="Subtitle1">What’s on Spotify?</h2>
<div class="box-container">
<div class="Songs">
<img
class="Song-image"
src="images/music-icon.png"
alt="music icon"
/>
<h3 class="Green-title">Millions of songs</h3>
<p class="spotify-text">There are millions of <br />songs on Spotify</p
>
</div>
<div class="Music">
<img
class="music-image"
src="images/high-quality-icon.png"
alt="high-quality-icon"
/>
<h3 class="Green-title">HD Music</h3>
<p class="spotify-text">
Listen to music as if you <br />
were listening live
</p>
</div>
<div class="Stream">
<img
class="devices"
src="images/devices-icon.png"
alt="devices-icon"
/>
<h3 class="Green-title">Stream Everywhere</h3>
<p class="spotify-text">
Stream music on your<br />
smartphone, tablet or <br />
computer
</p>
</div>
</div>
</section>
<div class="Works_container">
<div class="Text">
<h2 class="easy-yeezy">It’s as yeezy as Kanye West.</h2>
<br />
<h3 class="white title">Search</h3>
<p>
Know what you want to listen to? <br />
Just search and hit play.
</p>
<h3 class="white title">Browse</h3>
Check out the latest charts,<br />brand new releases and great<br />
playlists for right now.
<h3 class="white title">Discover</h3>
Enjoy new music every Monday<br />
with your own personal playlist.<br />Or sit back and enjoy Radio.
</div>
<div class="whitelogo">
<img
class="whitelogo"
src="images/spotify-icon-white.png"
alt="spotify-icon-white"
/>
</div>
<img class="Kanye" src="images/spotify-app.jpg" alt="spotify-app" />
</div>
</body>
</html>