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
146
147
|
<footer> <div class="footerWarp greenBg"> <div class="row"> <div class="col-lg-2 col-md-12 mb-4"> <img src="../assets/images/footerlogo.png" class="img-fluid"> </div> <div class="col-lg-3 col-md-6 mb-4"> <p class="small lightGreenFont text-uppercase">Products</p> <div class="d-flex footerMenu"> <div class="mr-3"> <a href="product_list.php" title="Floor Plant">Floor Plant</a> <a href="product_list.php" title="Table Plant">Table Plant</a> <a href="product_list.php" title="Indoor Plant">Indoor Plant</a> <a href="product_list.php" title="Outdoor Plant">Outdoor Plant</a> </div> <div class="mr-3"> <a href="product_list.php" title="Medium-Sized Plant">Medium-Sized Plant </a> <a href="product_list.php" title="Pet-Friendly Plant">Pet-Friendly Plant</a> </div> </div> </div> <div class="col-lg-3 col-md-6 mb-4"> <p class="small lightGreenFont text-uppercase">Support</p> <div class="d-flex footerMenu"> <div class="mr-3"> <a href="check_out.php" title="Order & Delivery">Order & Delivery</a>
<a href="faq.php" title="FAQs">FAQs</a> <a href="#" title="Return & Refund">Return & Refund </a> </div> <div class="mr-3"> <a href="learn.php" title="Learn">Learn</a> <a href="contact.php" title="Contact Us">Contact Us</a> </div> </div> </div> <div class="col-lg-3 col-md-6 mb-4"> <p class="small lightGreenFont text-uppercase">Flora Houses</p> <div class="d-flex footerMenu"> <div class="mr-3"> <a href="our_stories.php" title="Our Stories">Our Stories</a> <a href="#" title="CSR">CSR</a> <a href="register.php" title="Join Us">Join Us</a>
</div> <div class="mr-3"> <a href="terms.php" title="Terms & Conditions">Terms & Conditions</a> <a href="policy.php" title="Privacy Policy">Privacy Policy</a> </div>
</div> </div>
<div class="col-lg-1 col-md-6 mb-4">
<p class="small lightGreenFont text-uppercase">Follow us on</p> <div class="d-flex footerMedia">
<a href="#" class="facebookBtn d-inline-block" title="facebook"><i class="fab fa-facebook"></i></a> <a href="#" class="intargamBtn d-inline-block" title="instagram"><i class="fab fa-instagram"></i></a> <a href="#" class="youtuBtn d-inline-block" title="youtube"><i class="fab fa-youtube"></i></a>
</div> </div>
</div>
</div> </footer>
<div class="ci text-center big">© Flora Houses 2020. All rights reserved.</div>
<!-- <div class="cookies"> <p class="h4 whiteFont">Cookie Acceptance Needed</p> <a href="javascript:void(0);" class="cookiesCloseBtn"><i class="fas fa-times"></i></a> <div class="row"> <div class="col-md-10"> <p class="whiteFont font-weight-light">This website would like to use cookies to collect information to improve your browsing experience. Please review our Privacy Statement for more information. Do you accept?</p> </div> <div class="col-md-2"> <button type="#" class="btn btn-outline-light mr-4">Accept</button><button type="#" class="btn btn-outline-light">Deny</button>
</div> </div>
</div> -->
<!-- <a href="javascript:void(0);" class="scrollToTop" title="To Top"><i class="fas fa-chevron-up"></i></a>--> <script type="text/javascript" src="../assets/js/custom.js?<?= rand(1,10000)/7; ?>"></script> <!-- custom JS -->
<script>
$(".cookiesCloseBtn").click(function() { $(".cookies").hide(); });
$(window).scroll(function() { if ($(this).scrollTop() >= 50) { // If page is scrolled more than 50px $(".scrollToTop").fadeIn(200); // Fade in the arrow } else { $(".scrollToTop").fadeOut(200); // Else fade out the arrow } });
const status = document.getElementById('dark-status'); const browserStatus = document.getElementById('browser-dark-status');
status.innerHTML = `${DarkMode.isDarkLocal()}`; browserStatus.innerHTML = `${DarkMode.isDark()}`;
if (DarkMode.isDarkLocal()) { document.body.classList.add('dark'); }
DarkMode.onUpdate((isDark) => isDark ? document.body.classList.add('dark') : document.body.classList.remove('dark'));
$(".scrollToTop").click(function() { $("html, body").animate({ scrollTop: 0 }, 800); return false; }); </script>
|