forked from Khagan92/clear-fashion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (126 loc) · 4.2 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
144
145
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>👕 Clear Fashion | Environmentally & human-friendly clothes</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<div id='title' style='padding:20px;'>
<span>
<a href='.' style='text-decoration: none;'>
<span style="font-size: 30px;color:darkblue;">Clear fashion</span>
</a>
<span style="font-size: 20px;color:lightblue;">Let's buy ethical 🌱</span>
</span>
</div>
</header>
<div class="head">
<section>
<div class="row">
<div class="col-sm">
<div id="show">
<span for="show-select">Show:</span>
<select name="show" id="show-select">
<option value="12">12</option>
<option value="24">24</option>
<option value="48">48</option>
</select>
</div>
</div>
<div class="col-sm">
<div id="page">
<span for="page-select">Go to page:</span>
<select name="page" id="page-select"> </select>
</div>
</div>
</div>
</section>
<section id="options">
<div id="filters">
<div class="row">
<div class="col-sm">
<input type="checkbox" id="check-filterBy-Price" />
<span for="check-filterBy-Price">Cheap products 😬 </span>
</input>
</div>
<div class="col-sm">
<input type="checkbox" id="check-filterBy-Released" />
<span for="check-filterBy-Released">Fresh Products 👀 </span>
</input>
</div>
<div class="col-sm">
<input type="checkbox" id="check-filterBy-Fav" />
<span for="check-filterBy-Fav">All my Fav' ❤️ </span>
</input>
</div>
</div>
</div>
<div class="row">
<div id="brand">
<span for="brand-select">Choose your brand 🥸</span>
<select name="brand" id="brand-select"> </select>
</div>
</div>
<div class="row">
<div id="sort">
<span for="sort-select">Sort:</span>
<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>
</div>
</section>
</div>
<div class="content">
<section id="info-result"></section>
<section id="products"></section>
<section id="navigate">
<button id="before" onclick="beforePage()"><img src='/img/before.png' width="30px"></button>
<span id="actualPage"></span>
<button id="next" onclick="nextPage()"><img src='/img/next.png' width="30px"></button>
</section>
<section id="indicators">
<h2>Some indicators 🤓</h2>
<div class="row">
<div>
<span>Number of products</span>
<span id="nbProducts">0</span>
</div>
<div>
<span>Number of new products</span>
<span id="nbNewProducts">0</span>
</div>
</div>
<div>
<span>p50 price value</span>
<span id="p50">0</span>
</div>
<div>
<span>p90 price value</span>
<span id="p90">0</span>
</div>
<div>
<span>p95 price value</span>
<span id="p95">0</span>
</div>
<div>
<span>Last released date</span>
<span id="lastReleased">2020-01-01</span>
</div>
</section>
</div>
<footer>
Thank you for using our clear fashion shop web app, this was a part of an ESILV project using nodejs, html and css.
<br>
Made by : <a href="https://www.linkedin.com/in/chloe-daems/" target="_blank">Chloé Daems</a>
</footer>
<script type="text/javascript" charset="UTF-8" src="portfolio.js"></script>
</body>
</html>