-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (90 loc) · 5.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="stylesheet" href="./styles/styles.css">
<title>Frontend Mentor | Typemaster pre-launch landing page</title>
</head>
<body>
<header class="typemaster__header">
<a href="./index.html" class="typemaster__icon">
<svg width="40" height="40" preserveAspectRatio="xMidYMin" xmlns="http://www.w3.org/2000/svg">
<g fill="none" fill-rule="evenodd">
<path fill="#F16718" d="M0 0h40v40H0z" />
<path
d="M10.342 17c.182 0 .288-.11.288-.299v-8.03c0-.078.046-.125.122-.125h2.443c.182 0 .288-.11.288-.299V6.3c0-.189-.106-.299-.288-.299H5.288C5.106 6 5 6.11 5 6.299v1.948c0 .189.106.299.288.299h2.368c.076 0 .121.047.121.125v8.03c0 .189.106.299.288.299h2.277zm6.57 0c.183 0 .29-.11.29-.299v-5.547c0-.125.09-.141.151-.047l.94 1.619a.37.37 0 00.35.204h1.062a.37.37 0 00.35-.204l.94-1.619c.06-.094.152-.078.152.047v5.547c0 .189.106.299.288.299h2.277c.182 0 .288-.11.288-.299V6.3C24 6.11 23.894 6 23.712 6H21.45a.37.37 0 00-.349.204L19.265 9.3c-.045.094-.136.094-.182 0l-1.836-3.096a.37.37 0 00-.35-.204h-2.26c-.183 0-.289.11-.289.299V16.7c0 .189.106.299.289.299h2.276z"
fill="#FFF" fill-rule="nonzero" />
</g>
</svg>
</a>
<button class="btn btn--neutral typemaster__preorder__btn">Pre-Order Now</button>
</header>
<main class="typemaster__main">
<section class="typemaster__preorder">
<div class="typemaster__preorder__details">
<h1 class="typemaster__preorder__details__title">Typemaster keyboard</h1>
<p class="typemaster__preorder__details__description">Improve your productivity and gaming without breaking the
bank.
Upgrade to a high quality
mechanical typing experience.</p>
<button class="typemaster__preorder__details__btn btn btn--primary">Pre-Order Now</button>
<span class="typemaster__preorder__details__reldate text--strong"><strong class="text--header">RELEASE</strong>
ON
5/27</span>
</div>
<img class="typemaster__keyboard" srcset=" ./assets/mobile/image-keyboard.jpg 744w,
./assets/tablet/image-keyboard.jpg 956w,
./assets/desktop/image-keyboard.jpg 1080w" media="(max-width: 767px) 90vw,
(max-width: 1023px) 50vw,
40vw" src="./assets/mobile/image-keyboard.jpg" alt="typemaster keyboard image">
<div class="square"></div>
</section>
<section class="typemaster__keyboard">
<div class="square"></div>
<div class="typemaster__keyboard__mobile"> <img class="" srcset=" ./assets/mobile/image-phone-and-keyboard.jpg 258w,
./assets/tablet/image-phone-and-keyboard.jpg 428w,
./assets/desktop/image-phone-and-keyboard.jpg 510w" src="./assets/mobile/image-phone-and-keyboard.jpg"
alt="typemaster keyboard image" /></div>
<img class="typemaster__keyboard__glass" srcset=" ./assets/mobile/image-glass-and-keyboard.jpg 1x,
./assets/tablet/image-glass-and-keyboard.jpg 2x,
./assets/desktop/image-glass-and-keyboard.jpg 3x" media="(max-width: 767px) 90vw,
(max-width: 1023px) 50vw,
40vw" src="./assets/mobile/image-glass-and-keyboard.jpg" alt="typemaster keyboard image">
<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>
</section>
<section class="l-list">
<div class="l-list__item typemaster__feature">
<div class="typemaster__icon typemaster__icon--compatible"></div>
<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="l-list__item typemaster__feature">
<div class="typemaster__icon typemaster__icon--bluetooth"></div>
<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 class="l-list__item typemaster__feature">
<div class="typemaster__icon typemaster__icon--battery"></div>
<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="l-list__item typemaster__feature">
<div class="typemaster__icon typemaster__icon--backlit"></div>
<h3>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>
</section>
</main>
<footer class="typemaster__footer"> <span class="text--strong">Typemaster 2021</span> | All Rights Reserved</footer>
</body>
</html>