-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathkitchenware.html
More file actions
95 lines (91 loc) · 4.32 KB
/
kitchenware.html
File metadata and controls
95 lines (91 loc) · 4.32 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kitchenware</title>
<link rel="stylesheet" href="./CSS/dashboard.css">
<link rel="stylesheet" href="./CSS/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav id="slide-menu">
<div class="wrap">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="clothing.html">Clothing</a></li>
<li><a href="footwear.html">Footwear</a></li>
<li><a href="bags.html">Bags</a> </li>
<li><a href="skincare.html">Skin Care</a> </li>
<li><a href="apps.html">Apps</a> </li>
<li><a href="gadgets.html">Gadgets</a> </li>
<li><a href="automobiles.html">Automobiles</a> </li>
<li><a href="food.html">Food & Beverages</a> </li>
<li><a href="aircon.html">Air Conditioners</a> </li>
<li><a href="kitchenware.html" class="current">Kitchenware</a> </li>
</ul>
</div>
</nav>
<!-- Content panel -->
<div id="content">
<div class="menu-trigger"></div>
<div class="category kitchenware">
<img src="./img/underline1.png" alt="">
<h1 class="category-heading kitchen">Kitchenware</h1>
</div>
<div class="container">
<div class="list">
<div class="list-items">
<a href="https://www.hawkinscookers.com/"><img src="./img/Hawkins.png" alt=""></a>
<div>
<h3>Hawkins</h3>
<p> Hawkins Cookers Limited is an Indian company,based in Mumbai and manufactures pressure cookers and cookware,The company has three manufacturing. </p>
</div></div>
<div class="list-items">
<a href="https://www.ifbappliances.com/"><img src="./img/ifb.png" alt=""></a>
<div>
<h3>IFB</h3>
<p> Originally the company was known as Indian Fine Blanks Ltd,and started operations in India in 1974 in collaboration with Heinrich Schmid AG of Switzerland.</p>
</div></div>
<div class="list-items">
<a href="https://www.sujataappliances.com/"><img src="./img/sujata.png" alt=""></a>
<div>
<h3>Sujata</h3>
<p> Sujata was born in the year 1980 out of the continuous pursuit of perfection.</p>
</div>
</div>
<div class="list-items">
<a href="https://www.prestigexclusive.in/"><img src="./img/prestige.png" alt=""></a>
<div>
<h3>Prestige</h3>
<p>Prestige Limited is an Indian company that manufactures kitchen appliances and cookware, under the Prestige brand. The company is best known for its pressure cookers. </p>
</div>
</div>
<div class="list-items">
<a href="https://www.godrej.com/appliances"><img src="./img/godrej.jpg" alt=""></a>
<div>
<h3>Godrej</h3>
<p>Godrej Group, is an Indian conglomerate company headquartered in Mumbai, Maharashtra, India, managed and largely owned by the Godrej family. </p>
</div>
</div>
</div>
</div>
</div>
<script src="./JS/dashboard.js"></script>
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5fb78668a1d54c18d8eb8ff2/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
</body>
</html>