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
|
<!DOCTYPE html> <html lang="en">
<head> <title>FLORA HOUSE</title> <!-- css --> <?php include 'inc/headlinks.php';?> <meta name="keywords" content="FLORA HOUSE"> <meta name="description" content="Green is More Than a Colour"> <!-- js --> <?php include 'inc/link-js.php';?> </head>
<body>
<!-- header -->
<div class="subPageMenu">
<?php include 'inc/navbar.php';?> </div> <!-- end of header--> <section class="garyBg mainWarp"> <div class="row"> <div class="col-lg-6 mobilefaqMenu"> <p class="lightGreenFont small text-uppercase">FAQs</p> <div class="faqMenu"> <a href="javascript:void(0);" class="mb-4 active" data-link="aboutPlants" title="About Plants"> About Plants</a> <a href="javascript:void(0);" class="mb-4" data-link="aboutDelivery" title="About Delivery"> About Delivery</a> <!-- <a href="javascript:void(0);" class="mb-4" data-link="payment" title="Payment Details">Payment Details</a> --> <a href="javascript:void(0);" class="mb-4" data-link="aboutOrders" title="AboutOrders"> About Orders</a> <a href="javascript:void(0);" class="mb-4" data-link="aboutCare" title="AboutCare"> About Care</a> <a href="javascript:void(0);" class="mb-4" data-link="aboutService" title="AboutService"> About Service</a> <a href="javascript:void(0);" class="mb-4" data-link="aboutReturns" title="AboutReturns"> About Returns</a> </div>
</div> <div class="col-lg-6 loadFaqContent">
</div>
</div>
</section>
<?php include 'inc/subscribe.php';?>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer.php';?>
<script src="../assets/js/loadpage.js"></script> <script> $(".loadFaqContent").load("../view/faq/about_plant.html"); </script>
</body>
</html>
|