-
Notifications
You must be signed in to change notification settings - Fork 0
/
browse.html
74 lines (41 loc) · 2.09 KB
/
browse.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Snap n Reuse</title>
<!-- <meta http-equiv="refresh" content="3" > -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> -->
</head>
<body>
<div class="main" >
<!-- <article>
<h1 class="center">Snap N' Reuse</h1>
<h2 class="subtitle center">make reusing a daily habit</h2>
<h2 class="subtitle center">
Just snap or upload picture of waste items & get curated recommendations to reuse it!
</h2>
</article> -->
<div class="product-select">
<div class="tf-results">
<h1 id="results_title">Explore our curated instructables</h1>
</div>
<div id="explore-all">
<img id="icon-0" class="all-icons" src="assets/img/icons/0-box.png" alt="" onclick="fetchData(this.id);" >
<img id="icon-1" class="all-icons" src="assets/img/icons/1-soda-bottle.png" alt="" onclick="fetchData(this.id);" >
<img id="icon-2" class="all-icons" src="assets/img/icons/2-honey.png" alt="" onclick="fetchData(this.id);" >
<img id="icon-3" class="all-icons" src="assets/img/icons/3-document.png" alt="" onclick="fetchData(this.id);" >
<img id="icon-4" class="all-icons" src="assets/img/icons/4-plastic-bottle.png" alt="" onclick="fetchData(this.id);" >
<img id="icon-5" class="all-icons" src="assets/img/icons/5-container.png" alt="" onclick="fetchData(this.id);" >
<div id="parent-link">
</div>
</div>
</div>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!-- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> -->
<script src="assets/js/browse.js"></script>
</html>