-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path42-filters-LS.html
60 lines (55 loc) Β· 1.42 KB
/
42-filters-LS.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
<!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>42-filters-LS</title>
</head>
<style>
.filter-form {
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
align-items: flex-end;
gap: 16px;
}
.filter-form label {
display: flex;
flex-direction: column;
}
</style>
<body>
<form class="filter-form">
<label>
Color
<select name="color">
<option value="red">Red</option>
<option value="green">Green</option>
<option value="blue">Blue</option>
</select>
</label>
<label>
Size
<select name="size">
<option value="sm">Small</option>
<option value="md">Middle</option>
<option value="xl">Large</option>
</select>
</label>
<label>
Material
<select name="material">
<option value="steel">Steel</option>
<option value="wood">Wood</option>
<option value="plastic">Plastic</option>
</select>
</label>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</form>
<script src="./app/42-filters-LS.js" type="module"></script>
</body>
</html>