-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (102 loc) · 4.19 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
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<title>Frontend Mentor | Typemaster pre-launch landing page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div>
<img src="./assets/shared/logo.svg" alt="logo">
</div>
<div>
<button>
Pre-order now
</button>
</div>
</header>
<main>
<section class="first-content">
<div class="heading-content">
<h1>Typemaster keyboard</h1>
<p>
Improve your productivity and gaming without breaking the bank. Upgrade to a high quality
mechanical typing experience.
</p>
<div class="heading-btn">
<button>Pre-order now</button>
<span>Release on 5/27</span>
</div>
</div>
<div class="heading-img">
<div class="keyboard"></div>
<div class="heading-box"></div>
</div>
</section>
<section class="second-content">
<div class="second-content-img">
<div class="second-content-box"></div>
<div class="img-1"></div>
<div class="img-2"></div>
</div>
<div class="second-content-info">
<h2>Mechanical wireless keyboard</h2>
<p>
The Typemaster keyboard boasts top-notch build and practical design. It offers a wide variety
of switches and keycaps, along with reliable wireless connectivity.
</p>
</div>
</section>
<section class="third-content">
<div class="group-1">
<div class="compatible">
<img src="./assets/shared/icon-compatible.svg" alt="icon"/>
<h3>Highly compatible</h3>
<p>
Easy to use and works well with all major computer brands, gaming consoles and mobile devices.
Plug & play, no installation or driver needed.
</p>
</div>
<div class="bluetooth">
<img src="./assets/shared/icon-bluetooth.svg" alt="icon"/>
<h3>Wireless with bluetooth</h3>
<p>
Powerful 2.4G RF technology allows you to connect the cordless keyboard from up to 30ft away.
Simply plug the unifying receiver into your computer.
</p>
</div>
</div>
<div class="group-2">
<div class="battery">
<img src="./assets/shared/icon-battery.svg" alt="icon"/>
<h3>High capacity battery</h3>
<p>
Equipped with a long-lasting built-in battery, you’ll never have to spend a dime on replaceable ones.
Enjoy 40 hours of usage time between charges.
</p>
</div>
<div class="light">
<img src="./assets/shared/icon-light.svg" alt="icon"/>
<h3 class="light-header">RGB backlit modes</h3>
<p>
Choose from 4 backlight brightness levels and adjustable breathing speed. Each key glows intensely in the dark and helps
you type in low light conditions.
</p>
</div>
</div>
</section >
</main>
<footer>
<p>
<span>Typemaster 2021</span> | All Rights Reserved
</p>
</footer>
</body>
</html>