-
Notifications
You must be signed in to change notification settings - Fork 0
/
discover.html
75 lines (74 loc) · 2.04 KB
/
discover.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
73
74
75
<!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">
<link href="styles.css" rel="stylesheet">
<link href="discover.css" rel="stylesheet">
<title>Soundwave - Discover</title>
</head>
<body class="full-height-grow">
<div class="container full-height-grow">
<header class="main-header">
<a href="/" class="brand-logo">
<img src="images/logo.png">
<div class="brand-logo-name">Soundwave</div>
</a>
<nav class="main-nav">
<ul>
<li><a href="discover.html">Discover</a></li>
<li><a href="join.html">Join</a></li>
</ul>
</nav>
</header>
<section class="discover-main-section">
<div class="call-to-action">
<h1 class="title">Discover new music</h1>
<div class="icon-section">
<div class="icon">
<img src="images/microphone.svg">
Charts
</div>
<div class="icon">
<img src="images/albums.svg">
Albums
</div>
<div class="icon">
<img src="images/more.svg">
More
</div>
</div>
By joining you can benefit by listening to the latest albums released.
</div>
<img class="covers-image" src="images/covers.jpg">
</section>
</div>
<footer class="main-footer">
<div class="container">
<nav class="footer-nav">
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<nav class="footer-nav">
<ul>
<li>
<a href="#" class="social-link">
<img src="images/twitter.svg">
Twitter
</a>
</li>
<li>
<a href="#" class="social-link">
<img src="images/facebook.svg">
Facebook
</a>
</li>
</ul>
</nav>
</div>
</footer>
</body>
</html>