-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduse.html
More file actions
67 lines (62 loc) · 2.49 KB
/
produse.html
File metadata and controls
67 lines (62 loc) · 2.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
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
<!DOCTYPE html>
<html lang="ro">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5HQ3FS146Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5HQ3FS146Y');
</script>
<!-- End of Google Analytics -->
<!-- Hotjar Tracking Code for https://eeturcanu.github.io/ProBio_LP/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:2743775,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="favicon.png" type="image/png"/>
<title>ProBio</title>
<link rel="stylesheet" href="assets/stylesheet/style.css">
</head>
<body>
<div id="navbar" role="navigation">
<div class="container">
<ul id="nav-links" class="container">
<li><a id="nav-brand" href="index.html"><img id="brand-logo" src="assets/images/logo.png" alt="logo"></img><!--<span id="brand-name">ProBio</span>--></a></li>
<li><a href="anunturi.html">Anunturi</a></li>
</ul>
<span id="nav-auth" class="container">
<a>Cont Cumparator</a>
</span>
</div>
</div>
<section id="produse">
<h1>Produse</h1>
<input id="search-bar" type="text" placeholder="Cauta produse" onkeyup="search();">
<div id="categorii" class="grid">
<div class="categorii legumes" onclick="change_category('legumes');"><img src="assets/images/legumes.jpg"></img><div>Legume</div></div>
<div class="categorii fruits" onclick="change_category('fruits');"><img src="assets/images/fruits.jpg"></img><div>Fructe</div></div>
<div class="categorii dairy" onclick="change_category('dairy');"><img src="assets/images/dairy.jpg"></img><div>Produse Lactate</div></div>
</div>
<div id="produse-div" class="grid">
</div>
</section>
<script src="scripts/lazyLoadBackground.js"></script>
<script src="scripts/showNavbarOnScroll.js"></script>
<script src="scripts/index.js"></script>
<script>
start();
change_category("legumes");
</script>
</body>
</html>