-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathappliances.html
104 lines (103 loc) · 4.47 KB
/
appliances.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rent Furniture & Appliances Packages for 1/2 BHK</title>
<link rel="stylesheet" href="styles/appliances.css" />
<script src="https://kit.fontawesome.com/64a92b73e4.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="navbar"></div>
<div id="moh_mainA">
<div id="moh_deskA">
<div id="moh_subDeskA">
<a href="index.html"><span>Home > </span></a>
<span>Appliances</span>
</div>
<div id="moh_subContA">
<a href="package.html"><span>Packages</span></a>
<a href="furniture.html"><span>Furniture</span></a>
<a href="appliances.html"><span>Appliances</span></a>
<a href="electronics.html"><span>Electronics</span></a>
<a href="fitness.html"><span>Fitness</span></a>
</div>
</div>
<h1 class="moh_headingA">Browse by Appliances type</h1>
<hr class="moh_headingLineA" />
<div id="moh_roomA">
<div onclick="location.href='./search.html';">
<img src="https://www.rentomojo.com/public/images/category/appliances-bg/washing-machines.jpg"
alt="washing-machines" />
<div class="moh_pacA">
<span> Washing Machines </span>
</div>
</div>
<div onclick="location.href='./search.html';">
<div>
<img src="https://www.rentomojo.com/public/images/category/appliances-bg/refrigerators-and-freezers.jpg"
alt="Refrigerators" />
<div class="moh_pacA">
<span> Refrigerators & Freezers </span>
</div>
</div>
</div>
<div onclick="location.href='./search.html';">
<div>
<img src="https://www.rentomojo.com/public/images/category/appliances-bg/televisions.jpg"
alt="televisions" />
<div class="moh_pacA">
<span> Televisions </span>
</div>
</div>
</div>
<div onclick="location.href='./search.html';">
<div>
<img src="https://www.rentomojo.com/public/images/category/appliances-bg/air-conditioners.jpg"
alt="air-conditioners" />
<div class="moh_pacA">
<span> Air Conditioners </span>
</div>
</div>
</div>
<div onclick="location.href='./search.html';">
<div>
<img src="https://www.rentomojo.com/public/images/category/appliances-bg/air-purifiers.jpg"
alt="Water" />
<div class="moh_pacA">
<span> Water & Air Purifiers </span>
</div>
</div>
</div>
<div onclick="location.href='./search.html';">
<img src="https://www.rentomojo.com/public/images/category/appliances-bg/microwaves-and-induction-stoves.jpg"
alt="Microwaves" />
<div class="moh_pacA">
<span> Microwaves & Induction </span>
</div>
</div>
<div onclick="location.href='./search.html';">
<img src="https://www.rentomojo.com/public/images/category/appliances-bg/air-coolers.jpg"
alt="air-coolers" />
<div class="moh_pacA">
<span> Air Coolers </span>
</div>
</div>
<div onclick="location.href='./search.html';">
<img src="https://www.rentomojo.com/public/images/category/appliances-bg/dishwashers.jpg"
alt="dishwashers" />
<div class="moh_pacA">
<span> Dishwashers </span>
</div>
</div>
</div>
<div class="moh_viewallA" onclick="location.href='./search.html';">
<p>View All in Appliances</p>
<i class="fa-solid fa-circle-chevron-right"></i>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script src="scripts/appliances.js" type="module"></script>