-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1115 lines (1047 loc) · 52.6 KB
/
index.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
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head><title>Daily Duas</title>
<meta http-equiv="content-type" content="text-html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.4.2.css">
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile-1.4.2.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div data-role="page" id="pageone">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center><h2>Here are the Necessary Duas for Everyday Life</h2></center>
<form class="ui-filterable">
<input id="myFilter" data-type="search" placeholder="Search for any words">
</form>
<ul data-role="listview" data-filter="true" data-input="#myFilter" data-autodividers="true" data-inset="true">
<p><li><a href="#x">Ayatul Kursi</a></li></p>
<p><li><a href="#a">Dua Before Sleeping</a></li></p>
<p><li><a href="#b">Dua When Waking From Sleep</a></li></p>
<p><li><a href="#c">Dua Before Eating</a></li></p>
<p><li><a href="#d">Dua after Eating</a></li></p>
<p><li><a href="#f">Dua on Entering the Toilet</a></li></p>
<p><li><a href="#h">Dua on After leaving Toilet</a></li></p>
<p><li><a href="#o">Dua When wearing new clothes</a></li></p>
<p><li><a href="#i">Dua on Entering the Home</a></li></p>
<p><li><a href="#n">Dua on Leaving the home</a></li></p>
<p><li><a href="#j">Dua on visiting the sick</a></li></p>
<p><li><a href="#p">Dua during Thunder and lighting</a></li></p>
<p><li><a href="#q">Dua When Seeing Fire</a></li></p>
<p><li><a href="#r">Dua When Thanking Somebody</a></li></p>
<p><li><a href="#s">Dua When Entering Market</a></li></p>
<p><li><a href="#masjid">Dua on Entering Masjid</a></li></p>
<p><li><a href="#exit">Dua on Exiting Masjid</a></li></p>
<p><li><a href="#t">Dua after Ajaan</a></li></p>
<p><li><a href="#m">Dua after prayer</a></li></p>
<p><li><a href="#sehri">Dua for Sehri</a></li></p>
<p><li><a href="#z">Dua for Iftar</a></li></p>
<p><li><a href="#y">Dua after Iftar</a></li></p>
<p><li><a href="#u">Dua When looking in the Miror</a></li></p>
<p><li><a href="#v">Dua For A Billion Rewards</a></li></p>
<p><li><a href="#w">Dua in Distress or Discomfort</a></li></p>
<p><li><a href="#sorrow">Dua When Faced with Grief/Sorrow</a></li></p>
<p><li><a href="#evening">Evening Dua</a></li></p>
<p><li><a href="#k">Morning Dua</a></li></p>
<p><li><a href="#e">When Drinking Milk</a></li></p>
<p><li><a href="#g">What To Do When You Sneeze</a></li></p>
</ul>
<div data-role="footer">
<center><a target="_blank" href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a>
</div>
</div>
<div data-role="page" id="a">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua Before Sleeping</h3>
<p><h1>اَللَّهُمَّ بِاِسْمِكَ اَمُوْتُ وَاَحْيَ</h1></p>
<p><strong>English:</strong> <em>Al’laah hum’ma Bi Ismika Amootu Wa Ahyaa</em></p>
<p><strong>Meaning:</strong> “O Al’laah! In Your Name I die and live”</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="b">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua When Waking From Sleep</h3>
<p>When the Noble Prophet (S.M) would awaken from His rest (sleep), He would read:</p>
<p><h1>اَلْحَمْدُ للهِ الَّذِىْ اَحْىَ نَفْسِىْ بَعْدَ مَااَمَاتَهَا وَ اِلَيْهِ النُّشُوْرُ</h1></p>
<p><strong>English:</strong> <em>Alhumdu Lil Laahil Lazee Ahyaa Nafsee Ba’da Maa Amaataha Wa ilaihin Nushoor</em></p>
<p><strong>Meaning:</strong> "All praise is due to Al’laah, Who has granted us life after taking it away from us and towards Him is our resurrection"</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="c">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua Before Eating</h3>
<p>Read this Dua before eating:</p>
<p><h1>بِسْمِ اللهِ الرَّحْمَنِ الرَّحِيْمِ</h1></p>
<p><strong>English:</strong> <em>Bismil laahir Rahmaanir Raheem</em></p>
<p><strong>Meaning:</strong> Al’laah’s Name we begin with, The Compassionate, Most Merciful.</p>
<p>If you Forgotten to read it and remember after completing your half meal then say, </p>
<p><h1>بِسْمِ اللهِ اَوَّلَهُ وَاَخِرَهُ</h1></p>
<p><strong>English:</strong> <em>Bismil laahi Aw’walahu Wa Aakhirahu</em></p>
<p><strong>Meaning:</strong> "Al’laah’s Name we begin and end with"</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="d">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua after Eating</h3>
<p>Hazrat Abu Sa’eed Khudri(R.A) reported that the Noble Prophet(S.M) would read the following dua after he had completed his meal:</p>
<p><h1>اَ لْحَمْدُ للهِ الَّذِىْ اَطْعَمَنَا وَسَقَاناَ وَجَعَلَناَ مِنَ الْمُسْلِمِيْنَ</h1></p>
<p><strong>English:</strong> <em>Alhumdu lil laahil Lazee At’amana Wa Saqaana Wa Ja’alana Minal Muslimeen</em></p>
<p><strong>Meaning:</strong> "All Praise is due to Al’laah, who has blessed us with food and drink and made us from amongst the Believers"</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="e">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>When Drinking Milk</h3>
<p><h1>اَ للَّهُمَّ بَارِكْ لَنَا فِيْهِ وَزِدْناَ مِنْهُ</h1></p>
<p><strong>English:</strong> <em>Al’laah Hum’ma Baarik Lana Feehi Wa Zidna Minhu</em></p>
<p><strong>Meaning:</strong> "O Al’laah grant us blessing in it and grant us more from it."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="f">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua on Entering the Toilet</h3>
<p><h1>اَللَّهُمَّ اِ نِّىْ اَعُوْذُ بِكَ مِنَ الْخُبْثِ وَالْخَبَائِثِ</h1></p>
<p><strong>English:</strong> <em>Al’laah hum’ma In’ni A’oozu bika minal Khubthi wal Khabaa’ith</em></p>
<p><strong>Meaning:</strong> "O Allaah, I take refuge with you from all evil and evil-doers"</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="i">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua on Entering the Home</h3>
<p><h1>بِسْمِ اللَّهِ وَلَجْنَا، وَبِسْمِ اللَّهِ خَرَجْنَا، وَعَلَى رَبِّنَا تَوَكَّلْنَا</h1></p>
<p><strong>English:</strong> <em>Bismillaahi walajnaa, wa bismillaahi kharajnaa, wa a’laa rab-binaa tawak-kalnaa.</em></p>
<p><strong>Meaning:</strong> "In the name of Allah we enter, and in the name of Allah we leave, and upon our Lord we place our trust."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="g">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>What To Do When You Sneeze</h3>
<p>Hazrat Abu Hurairah(R.A) reports that the Noble Prophet (S.M) said,
“When anyone from amongst you sneezes, then he should say,</p>
<p><h1>اَ لْحَمْدُ للهِ</h1></p>
<p><strong>English:</strong> <em>Alhumdu lil laah</em></p>
<p><strong>Meaning:</strong> "All Praise is due to Al’laah"</p>
<p>And his friend or brother who hears him should say,</p>
<p><h1>يْرحَمُكَ اللهُ</h1></p>
<p><strong>English:</strong> <em>Yarhamukal’laah</em></p>
<p><strong>Meaning:</strong> "May Almighty Al’laah have mercy upon you"</p>
<p>Then in response to this, the one who sneezed should say,</p>
<p><h1>يَهْدِيْكُمُ اللهُ وَ يُصْلِحُ بَالَكُمْ</h1></p>
<p><strong>English:</strong> <em>Yahdee kumul’laahu wa Yuslihoo Baalakum</em></p>
<p><strong>Meaning:</strong> "Al’laah grant you guidance and remedy your condition."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="h">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>After leaving Toilet</h3>
<p><h1>غُفْرَانَكَ</h1></p>
<p><strong>English:</strong> <em>Ghuf-raa naka</em></p>
<p><strong>Meaning:</strong> "I ask You (Allah) for forgiveness"</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="j">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua on visiting the sick</h3>
<p><h1>ﻻﹶبَأْسَ طَهُورٌ إِنْ شَاءَ اللَّهُ</h1></p>
<p><strong>English:</strong> <em>Laa ba’sa tahoorun inshaa’Allah</em></p>
<p><strong>Meaning:</strong> "Never mind, may it (the sickness) be a purification, if Allah wills. "</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="k">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Morning Dua</h3>
<p><h1>اللَّهُمَّ بِكَ أَصْبَحْنَا، وَبِكَ أَمْسَيْنَا ، وَبِكَ نَحْيَا وَبِكَ نَمُوتُ،
وَإِلَيْكَ النُّشُورُ</h1></p>
<p><strong>English:</strong> <em>Allaahum-ma bika asbahnaa wa bika amsaynaa, wa bika nahyaa wa bika namootu, wa ilaykan-nushoor.</em></p>
<p><strong>Meaning:</strong> "O Allah, by Your leave we have reached the morning and by Your leave we have reached the evening, by Your leave we live and die and unto You is our resurrection."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="evening">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Evening Dua</h3>
<p><h1>اللَّهُمَّ بِكَ أَمْسَيْنَا ، وَبِكَ أَصْبَحْنَا ، وَبِكَ نَحْيَا وَبِكَ نَمُوتُ ،
وَإِلَيْكَ الْمَصِيرُ</h1></p>
<p><strong>English:</strong> <em>Allaahum-ma bika amsaynaa, wa bika asbahnaa, wa bika nahyaa wa bika namootu, wa ilaykal maser</em></p>
<p><strong>Meaning:</strong> "O Allah, by Your leave we have reached the evening and by Your leave we have reached the morning, by Your leave we live and die and unto You is our return."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="m">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua after prayer</h3>
<p><h1>أَسْتَغْفِر اللَّهَ</h1></p>
<p><strong>English:</strong> <em>Astaghfirullah.</em></p>
<p><strong>Meaning:</strong> "I ask Allah for forgiveness (three times)"</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="n">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua on Leaving the home</h3>
<p><h1>بِسْمِ اللَّهِ ، تَوَكَّلْتُ عَلَى اللَّهِ وَﻻﹶحَوْلَ وَﻻﹶقُوَّةَ إِﻻﱠ بِاللَّهِ</h1></p>
<p><strong>English:</strong> <em>Bismillaahi tawakkaltu ‘a-lal-laahi walaa hawla walaa quwwata illaa billaah.</em></p>
<p><strong>Meaning:</strong> "In the name of Allah, I place my trust in Allah, and there is no might nor power except with Allah."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="o">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua When wearing new clothes</h3>
<p><h1>اَ لْحَمْدُ للهِ الَّذِىْ كَسَانِىْ مَااُوَارِىْ بِهِ عَوْرَ تِىْ وَ اَتَجَّمَلُ بِهِ فِىْ حَيَاتِىْ</h1></p>
<p><strong>English:</strong> <em>Alhumdu lil laahil lazee Kasaani Maa Uwaari Bihi Awrati Wa Atajam’malu bihi fi Hayaati</em></p>
<p><strong>Meaning:</strong> "All praise is due to Al’laah, who has clothed me so that I may hide my nakedness and so that I may adorn myself in my lifetime."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="p">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua during Thunder and lighting</h3>
<p><h1>اَللَّهُمَّ لاَ تَقْتُلْنَا بِغَضَبِكَ وَ لاَ تُهْلِكْنَا بِعَذَابِكَ وَعَافِنَا قَبْلَ ذَالِكَ</h1></p>
<p><strong>English:</strong> <em>Al’laah hum’ma Laa Taqtulna Bi Ghadabika Wa Laa Tuhlikna Bi Azaabika Wa Aafina Qabla Zaalika.</em></p>
<p><strong>Meaning:</strong> "O Al’laah, Do not cause us death by Your Wrath and do not destroy us by Your punishment and forgive us before that happens."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="q">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua When Seeing Fire</h3>
<p><h1>اللَّهُ أَكْبَرُ</h1></p>
<p><strong>English:</strong> <em>Allah-hu AKbar.</em></p>
<p><strong>Meaning:</strong> "Allah is the Greatest."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="r">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="grid">Necessary Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua When Thanking Somebody</h3>
<p><h1>جَزَاكَ اللهُ خَيْرًِ</h1></p>
<p><strong>English:</strong> <em>Jazakumullaahu khairan</em></p>
<p><strong>Meaning:</strong> "May Allah, reward you well."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="s">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua When Entering Market</h3>
<p><h1>لَا إِلَهَ إِلَّا اللَّهُ وَحْدَهُ لَا شَرِيكَ لَهُ لَهُ الْمُلْكُ وَلَهُ الْحَمْدُ
يُحْيِي وَيُمِيتُ وَهُوَ حَيٌّ لَا يَمُوتُ بِيَدِهِ الْخُيْرُ وَهُوَ عَلَى كُلِّ شَيْءٍ قَدِيرٍ</h1></p>
<p><strong>English:</strong> <em>La ilaha illal-lah, wahdahu la shareeka lah, lahul-mulku walahul-hamd, yuhyee wa-yumeetu wa’huwa hayyun la yamoot, biyadihil-khayru wahuwa A’ala kulli shayin qadeer</em></p>
<p><strong>Meaning:</strong> "None has the right to be worshipped except Allaah, alone, without partner, to Him belongs all sovereignty and praise. He gives life and causes death, and He is living and does not die. In His hand is all good and He is over all things, omnipotent"</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="t">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua after Ajaan</h3>
<p><img src="suras/025.gif"></p>
<p><strong>English:</strong> <em>Allahumma rabba hathihid-da’watit-tammah, wassalatil-qa-imah ati Muhammadan alwaseelata wal-fadeelah, wab-aas-hu maqaman mahmoodan al-la-zee wa’aad-tah, innaka la tukhliful-mee’ad</em></p>
<p><strong>Meaning:</strong> "O Allah, the Lord of this total call (invitation, proclamation) and the Lord of the Salat to begin, grant Muhammad ‘intercession’ ( a status) and grant him superiority and let him reach Mooqame Mahmood which You have promised, for definitely You do not go back on Your promises"</p>
</center>
<strong>Listen audio :</strong>
<audio controls>
<source src="sura_audio/azaan_dua.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="u">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua When looking in the Mirror</h3>
<p><h1>اَللَّهُمَّ كَمَا حَسَّنْتَ خَلْقِىْ فَاَحْسِنْ خُلُقِىْ وَحَرِّمْ وَجْهِىْ عَلىَ النَّارِ</h1></p>
<p><strong>English:</strong> <em>Al’laah hum’ma Kama Has’santa Khalqi Fa Ahsin Khuluqi Wa Jar’rid Wajhi alan Naari</em></p>
<p><strong>Meaning:</strong> "O Al’laah! Just as You have given me good looks, so grant me good character, and keep my face safe from the fire (of hell)"</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="v">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua For A Billion Rewards</h3>
<p><h1>اَشْهَدُ اَنْ لآَّ اِلَهَ اِلاَّ اللهُ وَحْدَه‘ لاَ شَرِيْكَ لَه‘ اِلَهًا وَّاحِدًا صَمَدًا لَّمْ يَتَّخِذْ صَاحِبَةً وَّلاَ وَلَدًا وَّلَمْ يَكُنْ لَّه‘كُفُوًا اَحَدٌ ط</h1></p>
<p><strong>English:</strong> <em>Ash Hadu Al Laa ilaaha il’ lal laahu Wahdahu Laa Shareeka Lahu ilaahaw Waahidan Samadal Lum Yat’ ta khiz Saahibataw Wa Laa Waladaw Wa Lum Ya Kul lahu Kufuwan Ahad</em></p>
<p><strong>Meaning:</strong> "I testify that there is none worthy of worship except Al’laah, He is the One and Only. He has no partners. He is the only Al’laah. He has no needs. Neither is He begotten nor does He beget and there is none equal to Him"</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="w">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua in Distress or Discomfort </h3>
<p><h1>
لآَ اِلَهَ اِلاَّ اللهُ الْحَلِيْمُ الْحَكِيْمُ لآَ اِلَهَ اِلاَّ
اللهُ رَبُّ الْعَرْشِ الْعَظِيْمِ
لآَ اِلَهَ اِلاَّ اللهُ رَبُّ السَّمَاوَاتَ وَاْلاَرْضِ وَرَبُّ الْعَرْشِ الْكَرِيْمِ ط
</h1></p>
<p><strong>English:</strong> <em>Laa ilaaha il’lal laahul Haleemul Hakeemu – Laa ilaaha il’lal laahu Rab’bul Arshil Azeem – Laa ilaaha il’lal laahu Rab’bus Samawaati wal Ardi wa Rab’bul Arshil Kareem</em></p>
<p><strong>Meaning:</strong> "There is none worthy of worship except Al’laah, The Fore-bearing, The All Wise. There is none worthy of worship except Al’laah, The Lord of the Exalted Throne. There is none worthy of worship except Al’laah, The Lord of the Skies and The Lord of the Earth and the Lord of the distinguished Throne."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="x">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3> Ayatul Kursi </h3>
<img src="suras/Ayatul-Kursi.jpg">
<p><strong>English: </strong>Allahu la ilaha illa huwa Al -Haiyul-Qaiyum
La ta'khudhuhu sinatun wa la nawm
lahu ma fi as-samawati wa ma fil-'ard
Man dhal-ladhi yashfa'u 'indahu illa bi-idhnihi
Ya'lamu ma bayna aydihim wa ma khalfahum
wa la yuhituna bi shai'in min 'ilmihi illa bima sha'a
Wasi'a kursiyuhus-samawati wal ard
wa la ya'uduhu hifdhuhuma
wa Hu wal 'Aliyul-Adheem</p>
<p><strong>Meaning</strong>: Allah! There is no god but He - the Living, The Self-subsisting, Eternal. No slumber can seize Him Nor Sleep. His are all things In the heavens and on earth. Who is there can intercede In His presence except As he permitteth? He knoweth what (appeareth to His creatures As) Before or After or Behind them. Nor shall they compass Aught of his knowledge Except as He willeth. His throne doth extend Over the heavens And on earth, and He feeleth No fatigue in guarding And preserving them, For He is the Most High. The Supreme (in glory)</p> <p></p>
<strong>Listen audio :</strong>
<audio controls>
<source src="sura_audio/aayat_al_kursi.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="y">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua After Iftar</h3>
<p><h1>ذَهَبَ الظَّمَأُ وَ ابْتَلَّتِ الْعُرُوقُ، وَ ثَبَتَ الأجْرُ إنْ شَاءَ اللَّهُ </h1></p>
<p><strong>English:</strong> <em>dhahabadh dhama-u wabtallatil ‘urooqu, wa tha-batal ajru insha Allah</em></p>
<p><strong>Meaning:</strong> "The thrist is gone, the veins are moistened and the reward is confirmed, if Allah [Ta'ala] wills."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="z">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua For Iftar</h3>
<p><h1>اللَّهُمَّ اِنِّى لَكَ صُمْتُ وَبِكَ امنْتُ [وَعَلَيْكَ تَوَكَّلْتُ] وَعَلَى رِزْقِكَ اَفْطَرْتُ</h1></p>
<p><strong>English:</strong> <em>Allahumma Inni laka sumtu wa bika amantu [wa alayka tawakkalto] wa ‘ala rizqika aftartu</em></p>
<p><strong>Meaning:</strong> "O Allah! I fasted for You and I believe in You [and I put my trust in You] and I break my fast with Your sustenance."</p>
<p style="color: red;">note:</p><p>["wa ‘alayka tawakkaltu" is quoted in some books of knowledge - but not all, hence it is in brackets]</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="sehri">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua For Sehri</h3>
<p><h1>وَبِصَوْمِ غَدٍ نَّوَيْتَ مِنْ شَهْرِ رَمَضَانَ</h1></p>
<p><strong>English:</strong> <em>Wa bi-sawmi ghadin nawaytu min shahri ramadan</em></p>
<p><strong>Meaning:</strong> "I intend to keep the fast for tomorrow in the month of Ramadan."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="sorrow">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua When Faced with Grief/Sorrow</h3>
<p><h1>يَا حَيُّ يَا قَيُّومُ بِرَحْمَتِكَ أَسْتَغِيثُ </h1></p>
<p><strong>English:</strong> <em>Ya hayyu ya qayyumu birahmatika astagheeth.</em></p>
<p><strong>Meaning:</strong> "O Living One, O Self-existant One, by Your Mercy I seek help."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="masjid">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua on Entering Masjid</h3>
<p><h1>اللَّهُمَّ افْتَحْ لِي أَبْوَابَ رَحْمَتِكَ</h1></p>
<p><strong>English:</strong> <em>Allaahum-maf-Tahlee Abwaaba Rahmatika</em></p>
<p><strong>Meaning:</strong> "O Allah, open for me the doors Your Mercy."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="exit">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" class="ui-btn-active ui-state-persist" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h3>Dua on Exting Masjid</h3>
<p><h1>اللَّهُمَّ إِنِّي أَسْأَلُكَ مِنْ فَضْلِكَ</h1></p>
<p><strong>English:</strong> <em>Allaahum-ma In-nee As`aluka Min Fadhlika</em></p>
<p><strong>Meaning:</strong> "O Allah, I ask you of Your favour."</p>
</center>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="pagetwo">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone" data-icon="home">Daily Duas</a></li>
<li><a href="#pagetwo" class="ui-btn-active ui-state-persist" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<form class="ui-filterable">
<input id="myFilter1" data-type="search" placeholder="Search for any words">
</form>
<ul data-role="listview" data-filter="true" data-input="#myFilter1" data-autodividers="true">
<p><li><a href="#fatiha" data-transition="flow">Surah Fatiha</a></li></p>
<p><li><a href="#fil" data-transition="flow">Surah Al-Fil</a></li></p>
<p><li><a href="#quraysh" data-transition="flow">Surah Quraysh</a></li></p>
<p><li><a href="#kauthar" data-transition="flow">Surah Al-Kauthar</a></li></p>
<p><li><a href="#kaafiruun" data-transition="flow">Surah Al-Kaafiruun</a></li></p>
<p><li><a href="#nasr" data-transition="flow">Surah Nasr</a></li></p>
<p><li><a href="#Ikhlaas" data-transition="flow">Surah Al-'Ikhlaas</a></li></p>
<p><li><a href="#Falaq" data-transition="flow">Surah Al-Falaq</a></li></p>
<p><li><a href="#naas" data-transition="flow">Surah An-Naas</a></li></p>
<div data-role="footer">
<center><a target="_blank" href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="fil">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone"data-icon="grid">Daily Duas</a></li>
<li><a href="#pagetwo" class="ui-btn-active ui-state-persist" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center><p><p>
<h2 style="color: green;">Surah Al-Fil</h2>
<img src="suras/105_a.gif">
<img src="suras/105_b.gif">
<img src="suras/105_c.gif"></p></p>
<strong>Listen audio :</strong>
<audio controls>
<source src="sura_audio/fil.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
</center>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="quraysh">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone"data-icon="grid">Daily Duas</a></li>
<li><a href="#pagetwo" class="ui-btn-active ui-state-persist" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center> <p><p>
<h2 style="color: green;">Surah Quraysh</h2>
<img src="suras/106_a.gif">
<img src="suras/106_b.gif">
<img src="suras/106_c.gif"></p> </p>
<strong>Listen audio :</strong>
<audio controls>
<source src="sura_audio/quraish.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
</center>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="kauthar">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone"data-icon="grid">Daily Duas</a></li>
<li><a href="#pagetwo" class="ui-btn-active ui-state-persist" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center> <p><p>
<h2 style="color: green;">Surah Al-Kauthar</h2>
<img src="suras/107_a.gif">
<img src="suras/107_b.gif">
<img src="suras/107_c.gif"></p> </p>
<strong>Listen audio :</strong>
<audio controls>
<source src="sura_audio/kauser.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
</center>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="fatiha">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone"data-icon="grid">Daily Duas</a></li>
<li><a href="#pagetwo" class="ui-btn-active ui-state-persist" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center>
<h2>Surah Fatiha</h2>
<h1><img src="suras/fatiha/1.JPG"></h1>
<p>
<p>1. Bismillāhi r-raḥmāni r-raḥīm</p>
<p>2. Al ḥamdu lillāhi rabbi l-’ālamīn</p>
<p>3. Ar raḥmāni r-raḥīm</p>
<p>4. Māliki yawmi d-dīn</p>
<p>5. Iyyāka na’budu wa iyyāka nasta’īn</p>
<p>6. Ihdinā ṣ-ṣirāṭ al-mustaqīm</p>
<p>7. Ṣirāṭ al-laḏīna an’amta ‘alayhim ġayril maġḍūbi ‘alayhim walāḍ ḍāllīn</p>
<strong>Translation </strong>
<p>1. In the name of God, the Lord of Mercy, the Giver of Mercy!</p>
<p>2. Praise belongs to God, Lord of the Worlds,</p>
<p>3. the Lord of Mercy, the Giver of Mercy,</p>
<p>4. Master of the Day of Judgement.</p>
<p>5. It is You we worship; it is You we ask for help</p>
<p>6. Guide us to the straight path</p>
<p>7. the path of those You have blessed, those who incur no anger and who have not gone astray.</p></p>
<strong>Listen audio :</strong>
<audio controls>
<source src="sura_audio/fatiha.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
</center>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="kaafiruun">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone"data-icon="grid">Daily Duas</a></li>
<li><a href="#pagetwo" class="ui-btn-active ui-state-persist" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center><p><p>
<h2 style="color: green;">Surah Al-Kaafiruun</h2>
<img src="suras/109_a.gif">
<img src="suras/109_b.gif">
<img src="suras/109_c.gif"></p> </p>
<strong>Listen audio :</strong>
<audio controls>
<source src="sura_audio/kafiroon.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
</center>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="nasr">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone"data-icon="grid">Daily Duas</a></li>
<li><a href="#pagetwo" class="ui-btn-active ui-state-persist" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center><p><p>
<h2 style="color: green;">Surah Nasr</h2>
<img src="suras/110_a.gif">
<img src="suras/110_b.gif">
<img src="suras/110_c.gif"></p> </p>
<strong>Listen audio :</strong>
<audio controls>
<source src="sura_audio/nasr.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div><a href="#" class="ui-btn" data-rel="back">Go Back</a></div>
</center>
<div data-role="footer">
<center><a href="https://www.facebook.com/pages/Quran-the-Right-Path-of-Human/210588112349286" class="ui-btn ui-icon-plus ui-btn-icon-left">Like us on Facebook</a></center>
</div>
</div>
<div data-role="page" id="Ikhlaas">
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#pageone"data-icon="grid">Daily Duas</a></li>
<li><a href="#pagetwo" class="ui-btn-active ui-state-persist" data-icon="arrow-r">Suras</a></li>
<li><a href="#pagethree" data-icon="bullets">More</a></li>
</ul>
</div>
</div>
<center><p><p>
<h2 style="color: green;">Surah Al-'Ikhlaas</h2>