-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (90 loc) · 3.85 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon" href="./images/favicon.png" type="image/x-icon"
/>
<link rel="stylesheet" href="./style/style.css" />
<title>Equalizer landing page</title>
</head>
<body>
<div class="main-container">
<div class="hero-section">
<div class="hero-section-left-part">
<div class="navbar-title">
<img src="./images/logo.svg" alt="" />
</div>
<div class="hero-section-title">
<h2>We make your music sound extraordinary.</h2>
</div>
<div class="hero-section-text">
<p>
A system audio equalizer specifically designed for
Android and iOS. Freely tune the way your music
sounds with a professional grade parametric EQ &
volume mixer. Control bass, mids, treble, gain
control, reverb, and more!
</p>
</div>
</div>
<div class="hero-section-right-part">
<img src="./images/bg-pattern-1.svg" alt="" />
</div>
</div>
<div class="app-section">
<div class="app-left-part">
<img src="./images/illustration-app.png" alt="" />
</div>
<div class="app-right-part">
<div class="app-title">
<h2>Premium EQ</h2>
</div>
<div class="app-text">
<p>
Get expert-level control with a robust equalizer,
volume mixer, and spatial audio. Take your listening
experience to a whole new level and access all our
incredible features!
</p>
</div>
<div class="app-price">
<span>$4</span>
<p>/month</p>
</div>
<div class="app-btn-container">
<button class="black-bg-btn">
<img src="./images/icon-apple.svg" alt="" />
<span>iOS Download</span>
</button>
<button class="white-bg-btn">
<img src="./images/icon-android.svg" alt="" />
<span>Android Download</span>
</button>
</div>
</div>
</div>
<div class="footer-section">
<div class="footer-logo">
<img src="./images/logo.svg" alt="" />
</div>
<div class="footer-row">
<div class="footer-credit">
<p>All rights reserved © Equalizer 2021</p>
<p>
Have any problems? Contact us via social media or email <br>us at <span>[email protected]</span>
</p>
</p>
</div>
<div class="social-icons">
<img src="./images/icon-facebook.svg" alt="">
<img src="./images/icon-instagram.svg" alt="">
<img src="./images/icon-twitter.svg" alt="">
</div>
</div>
</div>
</div>
</body>
</html>