-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.html
70 lines (70 loc) · 2.05 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>👕 Clear Fahion | Environmentally & human-friendly clothes</title>
</head>
<body>
<h1>Clear fashion</h1>
<section id="options">
<div id="show">
<label for="show-select">Show:</label>
<select name="show" id="show-select">
<option value="12">12</option>
<option value="24">24</option>
<option value="48">48</option>
</select>
</div>
<div id="page">
<label for="page-select">Go to page:</label>
<select name="page" id="page-select"> </select>
</div>
<div id="filters">
<span>By reasonable price</span>
<span>By recently released</span>
<div id="brand">
<label for="brand-select">By brands:</label>
<select name="brand" id="brand-select"> </select>
</div>
</div>
<div id="sort">
<label for="sort-select">Sort:</label>
<select name="sort" id="sort-select">
<option value="price-asc">Cheaper</option>
<option value="price-desc">Expensive</option>
<option value="date-asc">Recently released</option>
<option value="date-desc">Anciently released</option>
</select>
</div>
</section>
<section id="indicators">
<h2>Indicators</h2>
<div>
<span>Number of products</span>
<span id="nbProducts">0</span>
</div>
<div>
<span>Number of new products</span>
<span>0</span>
</div>
<div>
<span>p50 price value</span>
<span>0</span>
</div>
<div>
<span>p90 price value</span>
<span>0</span>
</div>
<div>
<span>p95 price value</span>
<span>0</span>
</div>
<div>
<span>Last released date</span>
<span>2020-01-01</span>
</div>
</section>
<section id="products"></section>
<script type="text/javascript" charset="UTF-8" src="portfolio.js"></script>
</body>
</html>