-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (126 loc) · 6.12 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!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">
<title>Натур Адам Виссомович 211-325 28.01.2023</title>
<link rel = "stylesheet" type = "text/css" href="css/normalize.css">
<link rel = "stylesheet" type = "text/css" href="css/style.css">
<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&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<style>
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 48
}
</style>
</head>
<body>
<header>
<div style = "display: flex; flex-direction: row; justify-content:space-between; margin:3rem">
<div class = "burger">
<span class="material-symbols-outlined">menu</span>
</div>
<div class = "navlist">
<li>About</li>
<li>Why Begin</li>
<li>Features</li>
<li>Contact</li>
</div>
<div class = "identify">
<a href="#" style = "text-decoration: none">
<p class = "LogIn" >Log in</p>
</a>
<button class = "SignUpBtn">SIGN UP</button>
</div>
</div>
</header>
<main>
<section1>
<div class = "section1Div">
<div style = "display: flex; flex-direction: column; align-self: center;">
<div style = "display:flex; flex-direction: row; gap: 2rem">
<div class = "pictureStyle">
<img src="Materials/Height.svg" style = "object-fit: contain;">
</div>
<div style = "display:flex; flex-direction: column; gap: 0.1rem">
<h2>Body measurement tracking</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi</p>
</div>
</div>
<div style = "display:flex; flex-direction: row; gap: 2rem">
<div class = "pictureStyle">
<img src="Materials/Closet.svg">
</div>
<div style = "display:flex; flex-direction: column">
<h2>In home trial of clothes and closet</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi</p>
</div>
</div>
</div>
<img src = "Materials/Telephone.png">
</div>
</section1>
<section2 class = "section2">
<form action="//httpbin.org/post" name = "Keyboard Customizing" method = "POST">
<fieldset>
<legend style = "text-align: center">CUSTOM YOUR OWN DEVICE!</legend>
<div>
<label>
<p>Your Name</p>
</label>
<input class = "CustomInput" type = "text" name = "name" placeholder = "John Smith" required>
</div>
<div>
<label>
<p>Your Age</p>
</label>
<input class = "CustomInput" type = "value" name = "age" placeholder = "18" required>
</div>
<div style = "display: flex; flex-direction: column;">
<label><p>Choose your equipment</p></label>
<select style = "width:auto" name = "Switch Brand" required>
<option value="Default">Select a Switch Brand</option>
<option value="Cherry MX">Cherry MX</option>
<option value="Topre">Topre</option>
<option value="Razer">Razer</option>
<option value="Kailh">Kailh</option>
</select>
</div>
<div style = "display: flex; flex-direction: column;">
<label><p>Choose your type of keys</p></label>
<div style = "display: flex; flex-direction: row; gap:2rem">
<input type = "radio" name = "Key Type" value = "Tactile" required>
<label>
<p>Tactile</p>
</label>
</div>
<div style = "display: flex; flex-direction: row; gap:2rem">
<input type = "radio" name = "Key Type" value = "Linear" required>
<label>
<p>Linear</p>
</label>
</div>
<div style = "display: flex; flex-direction: row; gap:2rem">
<input type = "radio" name = "Key Type" value = "Clicking" required>
<label>
<p>Clicking</p>
</label>
</div>
</div>
<button class = "FormBtn" type = "submit">
GET
<span class="material-symbols-outlined">done</span>
</button>
</fieldset>
</section2>
</forms>
</main>
</body>
</html>