-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.html
More file actions
41 lines (39 loc) · 1.49 KB
/
create.html
File metadata and controls
41 lines (39 loc) · 1.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Create</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container">
<div class="creation__container">
<a href="index.html">Back</a>
<form id="form">
<h1>Create dress</h1>
<label for="input">Brand name</label>
<input class="creation__input" type="text" id="brand-input" />
<label for="input">Color</label>
<input class="creation__input" type="text" id="color-input" />
<label for="input">Price In UAH</label>
<input class="creation__input" type="number" id="price-input" />
<label for="input">Country</label>
<input class="creation__input" type="text" id="country-input" />
<label for="input">Size</label>
<input class="creation__input" list="number" id="size-input" />
<label for="input">Season</label>
<input class="creation__input" list="season" id="season-input" />
<button id="submit-button" type="submit">Submit</button>
</form>
<datalist id="season">
<option value="WINTER"></option>
<option value="SPRING"></option>
<option value="SUMMER"></option>
<option value="AUTUMN"></option>
</datalist>
</div>
</div>
<script type="module" src="js/create.js"></script>
</body>
</html>