-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 2.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Music for everyone - Spotify</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<nav>
<div class="container">
<img class="spotify-logo" src="img/spotify-logo.svg" alt="spotify-logo">
<ul>
<li><a href="">Premium</a></li>
<li><a href="">Help</a></li>
<li><a href="">Download</a></li>
<li><a>|</a></li>
<li><a href="">Sign up</a></li>
<li><a href="">Log In</a></li>
</ul>
</div>
</nav>
<header>
<div class="hero-img">
<div class="container">
<h1 id="title1">Music for everyone. <h1>
<h2 id="title2">Millions of songs. No credit card needed.</h2>
<button class="btn-spotify">Get Spotify Free</button>
</div>
</div>
</header>
<footer>
<div class="container">
<div class="footer-logo" style="margin-top: 60px; margin-right: 40px;">
<img class="spotify-logo" src="img/spotify-logo.svg" alt="spotify-logo">
</div>
<div class="footer-text">
<ul class="Company">
<li><a class="top-text">Company</a></li>
<li><a>About</a></li>
<li><a>Jobs</a></li>
<li><a>For the Record</a></li>
</ul>
<ul class="Communities">
<li><a class="top-text">Communities</a></li>
<li><a>For Artists</a></li>
<li><a>Developers</a></li>
<li><a>Brands</a></li>
<li><a>Investors</a></li>
<li><a>Vendors</a></li>
</ul>
<ul class="useful-links">
<li><a class="top-text">Useful links</a></li>
<li><a>Help</a></li>
<li><a>Web Player</a></li>
</ul>
</div>
<div class="footer-social">
<li><img class="button" src="/img/insta.svg"></li>
<li><img class="button" src="/img/tt.svg"></li>
<li><img class="button" src="/img/fb.svg"></li>
</div>
</div>
</div>
</footer>
</body>
</html>