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
79 lines (77 loc) · 2.47 KB
/
index.html
File metadata and controls
79 lines (77 loc) · 2.47 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
<!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="nav-container">
<img class="spoty-logo" src="./images/spotify-logo.png"/>
<ul class="nav-list">
<li><a href="#premium">Premium</a></li>
<li><a href="#discover">Discover</a></li>
<li><a href="#help">Help</a></li>
<li> <a href="#download">Download</a></li>
</ul>
</nav>
<header class="header">
<div class="intro">
<h1>Music for everyone.</h1>
<p>
Spotify is now free on mobile, tablet and computer.
<br>
Listen to the right music, wherever you are.
</p>
</div>
</header>
<section class="icons-spoty">
<h2> What’s on Spotify?</h2>
<div class="icons-options">
<article>
<img class="icons" src="./images/music-icon.png">
<h3>Millions of Songs </h3>
<p>
There are millions of songs on Spotify
</p>
</article>
<article>
<img class="icons" src="./images/high-quality-icon.png">
<h3> HD Music</h3>
<p>
Listen to music as if you were listening live
</p>
</article>
<article>
<img class="icons" src="./images/devices-icon.png">
<h3>Stream Everywhere </h3>
<p>
Stream music on your smartphone, tablet or computer
</p>
</article>
</div>
</section>
<section class="kanye-west-section">
<div class="info-section">
<h4>It’s as yeezy as Kanye West. </h4>
<p>
<h5>Search</h5>
Know what you want to listen to? <br> Just search and hit play.
</p>
<p>
<h5>Browse</h5>
Check out the latest charts, <br> brand new releases and great <br> playlists for right now.
</p>
<p>
<h5>Discover</h5>
Enjoy new music every Monday <br> with your own personal playlist.<br> Or sit back and enjoy Radio.
</p>
</div>
<img class="white-logo" src="./images/spotify-icon-white.png">
<img class="image-app" src="images/spotify-app.jpg">
</section>
</body>
</html>