-
Notifications
You must be signed in to change notification settings - Fork 0
/
manualform.html
101 lines (99 loc) · 3.74 KB
/
manualform.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
<!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>Sustainable Clothing Manual Search</title>
<link rel="icon" href="./images/favicon.png" />
<link rel="stylesheet" href="./css/results.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=Be+Vietnam+Pro:wght@400;600&display=swap"
rel="stylesheet"
/>
<style>
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;600&display=swap");
</style>
<link rel="stylesheet" href="https://use.typekit.net/eup4pch.css" />
</head>
<body>
<nav class="navbar">
<img src="./images/header_logo_97x22.99.png" alt="" class="logo-header" />
<div class="navbar__right">
<ul class="navbar__links">
<li><a href="./home.html" class="link">home</a></li>
<li><a href="./manualform.html" class="link">manual search</a></li>
<li><a href="./about.html" class="link">how this works</a></li>
<li class="link-bubble">install chrome extension</li>
</ul>
</div>
</nav>
<div class="home">
<div class="home-left">
<h1 class="home-left__title">
Start <br />
<img src="./images/fabric.png" alt="" class="home-left__img" />
Decoding
</h1>
<p class="home-left__description">
Please insert as much information as possible to ensure that results
are as accurate as possible.
</p>
</div>
<div class="home-right">
<form action="submit" class="home-right__form">
<h1 class="home-right__title">Enter Information</h1>
<div class="label-input-col">
<label for="clothingtype" class="home-right__label">
Clothing Type
</label>
<select
name="clothingtype"
class="home-right__input"
id="clothing-type-input"
>
<option class="home-right__option" value="shirt">shirt</option>
<option value="coat" class="home-right__option">coat</option>
<option value="shoes" class="home-right__option">shoes</option>
<option value="jacket" class="home-right__option">jacket</option>
</select>
</div>
<div class="label-input-col">
<label for="" class="home-right__label">Brand</label>
<input
id="brand-input"
type="select"
class="home-right__input"
placeholder="Insert brand"
/>
</div>
<div class="label-input-col">
<label for="" class="home-right__label">Materials</label>
<input
id="materials-input"
type="select"
class="home-right__input"
placeholder="Insert materials (separate with commas)"
value="materials"
/>
</div>
<div class="label-input-col">
<label for="" class="home-right__label">Weight (optional)</label>
<input
id="weight-input"
type="select"
class="home-right__input"
placeholder="Insert weight"
/>
</div>
<button class="home__btn" type="button">FINISH</button>
</form>
</div>
</div>
</body>
<script src="./js/recommended.js" type="module"></script>
<script src="./js/results.js" type="module"></script>
<script src="/scripts.js" type="module"></script>
</html>