-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlab-test.html
888 lines (556 loc) · 27.2 KB
/
lab-test.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
<!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">
<!-- Font-Awesome link -->
<script src="https://kit.fontawesome.com/a838936037.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="lab-test.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<title>pharmeasy.in/diagnostics</title>
<!-- <title>Lab Test</title> -->
</head>
<body>
<div class="containers">
<div>
<img src="https://pharmeasy.in/_next/image?url=%2Ficons%2Fpharmeasy-logo-white.png&w=256&q=75" alt="error">
</div>
<div>
<h3>Select Pincode</h3>
<select></select>
<p>|</p>
<h3>Search medicines/Healthcare products</h3>
</div>
<div>
<p>Order Medicines</p>
<p>Healthcare Products</p>
<p>Lab Tests</p>
<p>RTPCR</p>
</div>
<div>
<div>
<img src="https://assets.pharmeasy.in/web-assets/dist/275c07e1.svg" alt="error">
<p>Offers</p>
</div>
<div><img src="https://assets.pharmeasy.in/web-assets/dist/5eb42971.svg" alt="error">
<p>Login /Signup</p>
</div>
<div> <img src="https://assets.pharmeasy.in/web-assets/dist/21b0b5ba.svg">
<p>Cart</p>
</div>
</div>
</div>
<div class="slide-container">
<div class="slide">
<a href="https://pharmeasy.in/sale/fathers-day-sale">
<img src="https://cms-contents.pharmeasy.in/banner/3607e5e0e0b-FDCB.jpg" alt="">
</a>
</div>
<div class="slide">
<a href="https://pharmeasy.in/diagnostics/diag_collection?id=62" target="_blank">
<img src="https://cms-contents.pharmeasy.in/banner/4acf73cf129-2_MonsoonStomach_HP.jpg"
style="width:100%">
</a>
</div>
<div class="slide">
<a href="https://pharmeasy.in/diagnostics/packages/comprehensive-full-body-checkup-with-vitamin-d-b12-1794"
target="_blank">
<img src="https://cms-contents.pharmeasy.in/banner/491919cffc0-02_health-checkups_Cat_696x301_v1.jpg"
style="width:100%">
</a>
</div>
<div class="slide">
<a href="https://pharmeasy.in/diagnostics/packages/advanced-full-body-checkup-1771" target="_blank">
<img src="https://cms-contents.pharmeasy.in/banner/ccd24b2dcbb-2_Cat_696x301_095_couple.jpg">
</a>
</div>
<div class="slide">
<a href="https://pharmeasy.in/diagnostics/packages/comprehensive-full-body-checkup-with-vitamin-d-b12-1794"
target="_blank">
<img src="https://cms-contents.pharmeasy.in/banner/67144bc5fec-1_Cat_696x301_Grand1000.jpg">
</a>
</div>
<span class="arrow prev" onClick="controller(-1)">❮</span>
<span class="arrow next" onClick="controller(1)">❯</span>
</div>
<br>
<!-- // this is responsible for all checkups and health update/prescription -->
<div id="subscription">
<div>
<a href="https://pharmeasy.in/diagnostics/all-tests"><img
src="https://assets.pharmeasy.in/web-assets/dist/6b3d644c.svg" alt="_blank"></a>
<h3>All Tests</h3>
</div>
<div>
<a href="https://pharmeasy.in/diagnostics/health-checkup-packages"><img
src="https://assets.pharmeasy.in/web-assets/dist/dea295a0.svg" alt=""></a>
<h3>Health Packages</h3>
</div>
<div>
<a href="https://pharmeasy.in/diagnostics/upload-prescription"><img
src="https://assets.pharmeasy.in/web-assets/dist/d4d62fbf.svg" alt=""></a>
<h3>Upload Prescription</h3>
</div>
<div>
<a href=""><img src="https://assets.pharmeasy.in/web-assets/dist/4ed59722.svg" alt=""></a>
<h3>Book on Call</h3>
</div>
</div>
<div id="part-2">
<img src="https://assets.pharmeasy.in/web-assets/dist/3864b471.svg" alt="Error">
<div>
<a href="https://pharmeasy.in/plus?source=tagline"></a>
<p>Save flat <strong>5%</strong> extra on medicines & enjoys <strong>FREE</strong> delivery with
<strong>PLUS</strong> membership
</p>
</div>
</div>
<!-- // This is responsible for taking discount and memebership -->
<div id="part-3">
<div id="upper-part">
<h3>Certified Parteners Labs</h3>
<h3>View All</h3>
</div>
<div id="lower-part">
<div>
<img src="thyro.jpg" alt="">
<h3>Thyrocare (COVID RTPCR)</h3>
<P>NABL, CAP Ceritfied</P>
</div>
<div>
<img src="pharm-easy.png" alt="">
<h3>PharmEasy Labs (Thyrocare powered)</h3>
<P>Ceritfied</P>
</div>
</div>
</div>
<!-- // This part is responsible for seeing our different certified partnrers -->
<div class="cont">
<div id="upper-part1">
<h3>Affordable Health Packages</h3>
<h3>View All</h3>
</div>
<div id="lower-part1">
<div>
<img src="https://assets.pharmeasy.in/web-assets/dist/dea295a0.svg" alt="">
<h3>Advanced Full Body Checkup</h3>
<h6>Available at 1 certified lab</h6>
<p>
Includes 80 tests
</p>
<h2>Rs 999</h2>
<p>onwards</p>
</div>
<div>
<img src="https://assets.pharmeasy.in/web-assets/dist/dea295a0.svg" alt="">
<h3>Advanced Full Body Checkup with Covid Antibody</h3>
<h6>Available at 1 certified lab</h6>
<p>
Includes 81 tests
</p>
<h2>Rs1,299</h2>
<p>onwards</p>
</div>
<div>
<img src="https://assets.pharmeasy.in/web-assets/dist/dea295a0.svg" alt="">
<h3>Advanced Renal Package</h3>
<h6>Available at 1 certified lab</h6>
<p>
Includes 9 tests
</p>
<h2>Rs 625</h2>
<p>onwards</p>
</div>
<div>
<img src="https://assets.pharmeasy.in/web-assets/dist/dea295a0.svg" alt="">
<h3>Alcohol Impact Checkup</h3>
<h6>Available at 1 certified lab</h6>
<p>
Includes 57 tests
</p>
<h2>Rs 1,499</h2>
<p>onwards</p>
</div>
</div>
</div>
<!-- This part is responsible for taking health packages -->
<div class="text-items">
<div>
<h2>The (Pharm)Easy Way To Book Lab Tests Online</h2>
<span>Book Diagnostics Lab Test Online. Get doorstep sample collection</span>
</div>
<div>
<h2>Lab Test Booking Made Simple</h2>
<span>One of the most popular services PharmEasy offers is diagnostic testing. People need to book
pathological tests for many reasons. But before booking, they wonder if the <b>diagnostic center </b>
can be trusted to produce accurate results and how long they might have to wait in a queue to get
tested.</span> <br> <br>
<p>
To ease your anxieties, PharmEasy offers the facility of doorstep collection. The technician will come
to your house to collect samples. And all safety precautions are maintained. A fresh collection kit
and/or needle will be used so that there is no contamination of samples of the spread of diseases. We
use special ice boxes that meet NABL guidelines to transport your samples. The reports will be sent to
you online. That means you won’t have to travel to the diagnostic lab to collect your reports.
</p>
<br><br>
<h2>
How can you book diagnostic tests online?
</h2>
<p>Booking a test on PharmEasy is simple</p>
<br><br>
<div class="list">
<ul>
<li>
<span><a href="https://pharmeasy.in/diagnostics">Visit https://pharmeasy.in/diagnostics</a> or
click on Lab Tests on the PharmEasy website or app.</span>
</li>
</ul>
<ul>
<li>
<span>Upload your prescription or choose the lab test from the search box.</span>
</li>
</ul>
<ul>
<li>
<span>Alternatively, you can call our customer service team on 7022000900 and they will make the
booking for you</span>
</li>
</ul>
</div>
<h2>
Looking to book a pathology test? Here’s how PharmEasy can help!
</h2>
<br>
<span>Online diagnostic tests work as smoothly as clockwork. Once you’ve booked the <b>pathology test</b>
you need with the <b>diagnostic centre</b> you prefer, you will get a confirmation on your registered
e-mail id and SMS. The backend support team might also call you to confirm the booking.Post this our
expert technician will arrive at your place at the selected slot and collect your sample for processing
at our state of the art labs. Reports will be shared with you over SMS and will also be available in
your account on app/web.</span>
<br><br>
<h2 class="_1cjtB">Why choose PharmEasy to book lab tests?</h2>
<br>
<span>We can give you reasons galore for choosing PharmEasy-</span>
<div class="list">
<ul>
<li>
<span>2 Lac+ happy customers</span>
</li>
</ul>
<ul>
<li>
<span>Safe home sample collection</span>
</li>
</ul>
<ul>
<li>
<span>Up to 70% OFF</span>
</li>
</ul>
<ul>
<li>
<span>Certified & 100% Automated labs</span>
</li>
</ul>
<ul>
<li>
<span>Timely and accurate reports</span>
</li>
</ul>
<ul>
<li>
<span>500+ tests and health packs to choose from</span>
</li>
</ul>
</div>
<span>Now that you know why PharmEasy can be your trusted diagnostic test booking partner, don’t wait,
download the PharmEasy app today and book a health check right away.</span>
<br><br>
<div class="faq">
<h2>Frequently Asked Questions</h2>
<div>
<h2>What are the covid precautions PharmEasy is taking for the testing purpose?</h2>
<p>
PharmEasy takes safety of our patients and staff very seriously. Which is why since the onset of
COVID-19, we formulated a 5-step safety program to offer 100% protection to all stakeholders..
Along with this, NABL guidelines are followed to ensure samples are not corrupted during
collection, transportation or storage. Here are the safety measures that we adhere to-Vigilance
about face masksHand hygiene including sanitization and wearing of glovesFrequent thermal
checksHygienic sample collectionCareful disposal of wasteCheck flu symptoms with patients
</p>
</div>
<div>
<h2>Are the phlebotomists sufficiently qualified?</h2>
<p>
PharmEasy owns 18 state-of-the-art diagnostic laboratories in the country with an inhouse fleet
of 500 phlebotomists across 2500+ pincodes. We have a dedicated training team for the
technicians which constantly track their performance on parameters like on time arrival,
painless collection, adherence to NABL guidelines for sample storage & transport and customer
support. We have a very strict hiring process which ensures that every sample collection
experience is best in class.
</p>
</div>
<div>
<h2>How efficient is the sample collection and analysis process?</h2>
<p>Utmost care is taken to collect samples while maintaining complete hygiene. Only new and fresh
collection kits and needles are used. After collection, the sample is immediately transferred
into an icebox to prevent degradation and bacterial build-up which may lead to inaccurate
diagnosis. The samples are barcode tagged to prevent mix up and in the laboratories, technicians
use high-end, state-of-the-art devices to analyse the samples.</p>
</div>
<div>
<h2>Why are lab tests essential?</h2>
<p>
Lab tests or diagnostic tests are recommended by doctors when they suspect that there might be
something wrong with your health. Samples of your blood, stool, urine, or mucus can reveal a lot
about the state of your health when analysed with special devices. Once the problem is detected,
your doctor can diagnose and put you on medication or suggest a course of treatment.
</p>
</div>
<div>
<h2>How long does it take for the report to be delivered?</h2>
<p>It takes 24-48 hours for the lab to prepare your report and have it delivered to you.</p>
</div>
<div>
<h2>
How should one prepare for a lab test?
</h2>
<p>Different tests have different requirements. Some may need to be on an empty stomach whereas, for
some other tests, you may need to consume food before the sample is collected. Speak with your
doctor regarding what you need to do to prepare for a lab test. Let your doctor know if you are
already on any medication.</p>
</div>
<div>
<h2>
How are lab test reports interpreted?
</h2>
<p>
The reports that our labs will deliver to you will be quite detailed. There will be charts of
reference ranges to help you understand the report and a statement from a qualified doctor. But,
once you receive your report, it is best to consult your doctor and ask him/her to explain it to
you.
</p>
</div>
<div>
<h2>
If the lab test results are within normal range, does that mean no illness has been detected?
</h2>
<p>If your reports are within normal range, it is certainly good news. But normal results do not
always give you a clean bill of health. If symptoms persist, your doctor will recommend other
tests to detect what is triggering the unusual signs.</p>
</div>
</div>
</div>
</div>
<div class="slide1-container">
<h2>Our Happy Patients</h2>
<div class="slide1">
<div>
<img src="https://cdn.pharmeasy.in/cms/homepage_assets/testimonial1.png" alt="">
</div>
<div>
<h2>Chandrima Chanda</h2>
<p>Kolkata</p>
<p>"Highly impressed with Pharmeasy services. When the phlebo came to collect the blood sample, he was
properly dressed with all the safety precautions like mask, gloves and used sanitizer. Moreover, he
was also on time. From now on, I will choose Pharmeasy for all my testing needs and won't go for
traditional labs."</p>
</div>
</div>
<div class="slide1">
<div>
<img src="https://cdn.pharmeasy.in/cms/homepage_assets/testimonial2.png" alt="">
</div>
<div>
<h2>Nitin Choudhary</h2>
<p>Delhi</p>
<p>"Technician who visited for blood collected was well groomed, polite and trained. He took my blood
with utmost care maintaining all hygiene and precautions. Best ever experience with any labs so far
for my blood tests."</p>
</div>
</div>
<div class="slide1">
<div>
<img src="https://cdn.pharmeasy.in/cms/homepage_assets/testimonial3.png" alt="">
</div>
<div>
<h2>Venkatesh S</h2>
<p>Bangalore</p>
<p>"My sample was collected on time and the phlebotomist who visited my home took all the necessary
precautions related to safety. The customer care executive was also well trained to respond to my
queries. Really happy with the overall process."</p>
</div>
</div>
<div class="slide1">
<div>
<img src="https://cdn.pharmeasy.in/cms/homepage_assets/testimonial4.png" alt="">
</div>
<div>
<h2>Sahil Sapra</h2>
<p>Nagpur</p>
<p>"Pharmeasy home collection services are very impressive. The phlebo who came for collection was
extremely well trained and equipped with all necessary precautions like mask and gloves. I am also
satisfied with the reports that came pretty quick. From now on whatever testing I need to do I will
choose Pharmeasy."</p>
</div>
</div>
<span class="arrow1 prev1" onClick="controller1(-1)">❮</span>
<span class="arrow1 next1" onClick="controller1(1)">❯</span>
</div>
<br>
<!-- ------------------------------------------------------- -->
<div class="slide2-container">
<!-- Full-width images with number and caption text -->
<div class="slide2">
<!-- <div class="numbertext">3 / 3</div> -->
<img src="https://cdn01.pharmeasy.in/dam/diagnostics/usp-images/e916484d3a2336368ce2ecf1748437e2"
style="width:100%">
<h3>Affordable Pricing</h3>
<p>Get the best price for tests and packages by comparing across multiple labs.</p>
</div>
<div class="slide2">
<!-- <div class="numbertext">1 / 3</div> -->
<img src="https://cdn01.pharmeasy.in/dam/diagnostics/usp-images/64664cb0cfd63f81bc200f3e1e0c755f"
style="width:100%">
<h3>Convenience</h3>
<p>Get your samples collected at the comfort of your home.</p>
</div>
<div class="slide2">
<!-- <div class="numbertext">2 / 3</div> -->
<img src="https://cdn01.pharmeasy.in/dam/diagnostics/usp-images/55f90440a9873704a771d084cb65b909"
style="width:100%">
<h3>
Accurate Reports
</h3>
<p>Get accurate and timely reports from our Certified Partner Laboratories.</p>
</div>
<!-- Next and previous buttons -->
<span class="arrow2 prev2" onClick="controller2(-1)">❮</span>
<span class="arrow2 next2" onClick="controller2(1)">❯</span>
</div>
<br>
<div id="offers">
<div>
<img src="https://assets.pharmeasy.in/web-assets/dist/9407515b.svg?dim=0x72&dpr=2&q=100" alt="">
<h5>Trusted Labs</h5>
<p>Every test booked via PharmEasy is conducted by certified labs that are 100% verified and trustworthy.
</p>
</div>
<div>
<img src="https://assets.pharmeasy.in/web-assets/dist/0105ddc1.svg?dim=0x72&dpr=2&q=100" alt="">
<h5>Home Visit</h5>
<p>With PharmEasy, you get a FREE sample pick-up* by professional phlebotomists from your home or preferred
location.</p>
</div>
<div>
<img src="https://assets.pharmeasy.in/web-assets/dist/fc71c500.svg?dim=0x72&dpr=2&q=100" alt="">
<h5>Timely and Accurate Reports</h5>
<p>Once collected, samples will be sent to labs for processing. Detailed reports will be shared within a
stipulated timeline.</p>
</div>
<div>
<img src="https://assets.pharmeasy.in/web-assets/dist/4a11ac5a.svg?dim=0x72&dpr=2&q=100" alt="">
<h5>Up to 70% OFF</h5>
<p>At PharmEasy, you save at every step! On diagnostic tests, get up to 70% OFF on various tests and test
packages.</p>
</div>
</div>
<div id="download">
<p>Download the App for Free</p>
<!-- <i class="fa-brands fa-google-play"></i> -->
<div>
<div>
<a href="https://play.google.com/store/games?hl=en&gl=US" target="_blank"><i
class="fa-brands fa-google-play fa-2x"></i></a>
<p>Google Play</p>
</div>
<div>
<a href="https://www.apple.com/in/app-store/" target="_blank">
<i class="fa-brands fa-apple fa-2x"></i>
</a>
<p>App Store</p>
</div>
</div>
</div>
<div id="footer">
<div id="upper">
<div>
<h3>Company</h3>
<a href="https://pharmeasy.in/about-us" target="_blank">About Us</a>
<a href="https://pharmeasy.in/careers/">Careers</a>
<a href="https://pharmeasy.in/blog/">Blog</a>
<a href="https://manch.pharmeasy.in/PharmEasyPartner.html">Partner with PharmEasy</a>
<a href="https://pharmeasy.typeform.com/to/whj0JOdy">Sell at PharmEasy</a>
</div>
<div>
<h3>Our services</h3>
<a href="https://pharmeasy.in/online-medicine-order">Order Medicine</a>
<a href="https://pharmeasy.in/health-care">Healthcare Products</a>
<a href="https://pharmeasy.in/diagnostics">Lab Tests</a>
<a href="">Find Nearest Collection Centre</a>
<br> <br>
<h3>Need Help</h3>
<a href="https://pharmeasy.in/online-medicine-order/browse">Browse All Medicines</a>
<a href="https://pharmeasy.in/molecules">Browse All Molecules</a>
<a href="https://pharmeasy.in/online-medicine-order/browse/areas">Browse All Cities & Areas</a>
<a href="https://pharmeasy.in/help">FAQ</a>
</div>
<div>
<h3>Policy Info</h3>
<a href="https://pharmeasy.in/legal/editorial-policy">Editorial Policy</a>
<a href="https://pharmeasy.in/legal/privacy-policy">Privacy Policy</a>
<a href="https://pharmeasy.in/vulnerability-disclosure-policy">Vulnerability Disclosure Policy</a>
<a href="https://pharmeasy.in/legal/terms-and-conditions">Terms and Conditions</a>
<a href="https://pharmeasy.in/customer-support-policy">Customer Support Policy</a>
<a href="https://pharmeasy.in/return-policy">Return Policy</a>
</div>
<div>
<h3>FOLLOW US</h3>
<br>
<a href="https://www.instagram.com/pharmeasyapp/">
<i class="fa-brands fa-instagram-square fa-2x"></i></a>
<a href="https://www.facebook.com/pharmeasy/"><i class="fa-brands fa-facebook fa-2x"></i></a>
<a href="https://www.youtube.com/channel/UCDats_DLX-bGZH3-KGu8JhA"><i
class="fa-brands fa-youtube fa-2x"></i></a>
<a href="https://twitter.com/pharmeasyapp/"><i class="fa-brands fa-twitter-square fa-2x"></i></a>
</div>
</div>
</div>
<div id="lower">
<div>
<h3>
Our Payment Partners
</h3>
</div>
<div id="store">
<div id="icons">
<img src="https://assets.pharmeasy.in/web-assets/dist/af0c6812.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/0e010044.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/1066bb1f.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/3a1a533d.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/fbea1701.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/4733a49d.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/b278e536.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/0aca2077.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/44a51ca5.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/44a51ca5.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/e9445364.svg" alt="">
<img src="https://assets.pharmeasy.in/web-assets/dist/6e09c713.svg" alt="">
</div>
<div id="copyrights">
<div>
<span>© 2022 PharmEasy. All Rights Reserved.</span>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="lab-test.js"></script>
<!-- <script src="lab-test2.js"></script> -->