-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (84 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<title>Frontend Mentor | Equalizer landing page</title>
</head>
<body>
<main>
<img src="images/logo.svg" alt="" class="logo__img" />
<div class="hero__container">
<h1>We make your music sound extraordinary.</h1>
<p class="hero__text">
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 class="images__container">
<div class="pattern2__container">
<img src="images/bg-pattern-2.svg" alt="" class="pattern2__img" />
</div>
<img class="app__img" src="images/illustration-app.png" alt="" />
<div class="card-block__container">
<div class="card-plan__container">
<h2>Premium EQ</h2>
<p class="card-plan__text">
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>
<p class="cost"><span>$4</span> / month</p>
<button class="ios__btn">
<img src="images/icon-apple.svg" alt="" class="icons__img" />iOS
Download
</button>
<button class="android__btn">
<img
src="images/icon-android.svg"
alt=""
class="icons__img"
/>Android Download
</button>
</div>
</div>
<footer>
<img
src="images/logo.svg"
alt=""
class="logo__img"
id="logo__footer"
/>
<div class="footer__container">
<div class="contact-us__container">
<p>All rights reserved © Equalizer 2021</p>
<p>
Have any problems? Contact us via social media or email us at
<span>equalizer@example.com</span>
</p>
</div>
<div class="socials-icons__container">
<button>
<img src="images/icon-facebook.svg" alt="" class="icons__img" />
</button>
<button>
<img
src="images/icon-instagram.svg"
alt=""
class="icons__img"
/>
</button>
<button>
<img src="images/icon-twitter.svg" alt="" class="icons__img" />
</button>
</div>
</div>
</footer>
</div>
</main>
</body>
</html>