-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathabout.php
executable file
·131 lines (106 loc) · 4.14 KB
/
about.php
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
<?php
include "includes/head.php"
?>
<body>
<div class="site-wrap">
<?php
include "includes/header.php"
?>
<div class="site-blocks-cover inner-page" style="background-image: url('images/hero_1.jpg');">
<div class="container">
<div class="row">
<div class="col-lg-7 mx-auto align-self-center">
<div class=" text-center">
<h1>About Us</h1>
</div>
</div>
</div>
</div>
</div>
<div class="site-section bg-light custom-border-bottom" data-aos="fade">
<div class="container">
<div class="row mb-5">
<div class="col-md-6">
<div class="block-16">
<figure>
<img src="images/bg_1.jpg" alt="Image placeholder" class="img-fluid rounded">
</figure>
</div>
</div>
<div class="col-md-1"></div>
<div class="col-md-5">
<div class="site-section-heading pt-3 mb-4">
<h2 class="text-black">WHO WE ARE</h2>
</div>
<p>Pharma.com, is brought to you by the Pharma Company – one of India’s
most trusted pharmacies, with over 100 years’ experience in dispensing quality medicines.
At netmeds.com, we help you look after your own health effortlessly as well as take care
of loved ones wherever they may reside in India. You can buy and send medicines from any
corner of the country - with just a few clicks of the mouse.</p>
</div>
</div>
</div>
</div>
<div class="site-section bg-light custom-border-bottom" data-aos="fade">
<div class="container">
<div class="row mb-5">
<div class="col-md-6 order-md-2">
<div class="block-16">
<figure>
<img src="images/hero_1.jpg" alt="Image placeholder" class="img-fluid rounded">
</figure>
</div>
</div>
<div class="col-md-5 mr-auto">
<div class="site-section-heading pt-3 mb-4">
<h2 class="text-black">ONE-STOP SHOP</h2>
</div>
<p class="text-black">Pharma.com continues a legacy of 100 years of success in the
pharmaceutical industry. We are committed to provide safe, reliable and affordable medicines
as well as a customer service philosophy that is worthy of our valued customers’ loyalty.
We offer a superior online shopping experience, which includes ease of navigation and
absolute transactional security.</p>
</div>
</div>
</div>
</div>
<div class="site-section site-section-sm site-blocks-1 border-0" data-aos="fade">
<div class="container">
<div class="row">
<div class="col-md-6 col-lg-4 d-lg-flex mb-4 mb-lg-0 pl-4" data-aos="fade-up" data-aos-delay="">
<div class="icon mr-4 align-self-start">
<span class="icon-truck text-primary"></span>
</div>
<div class="text">
<h2>Free Shipping</h2>
<p>FREE Shipping if you
Order ₹200 or more </p>
</div>
</div>
<div class="col-md-6 col-lg-4 d-lg-flex mb-4 mb-lg-0 pl-4" data-aos="fade-up" data-aos-delay="100">
<div class="icon mr-4 align-self-start">
<span class="icon-refresh2 text-primary"></span>
</div>
<div class="text">
<h2>Free Returns</h2>
<p>You can return any product within 48h with no charges</p>
</div>
</div>
<div class="col-md-6 col-lg-4 d-lg-flex mb-4 mb-lg-0 pl-4" data-aos="fade-up" data-aos-delay="200">
<div class="icon mr-4 align-self-start">
<span class="icon-help text-primary"></span>
</div>
<div class="text">
<h2>Customer Support</h2>
<p>24/7 customer support to ensure the customers satisfaction</p>
</div>
</div>
</div>
</div>
</div>
<?php
include "includes/footer.php"
?>
</div>
</body>
</html>