-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·770 lines (716 loc) · 46.8 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
<!doctype html>
<html lang="en-us">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-163901291-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-163901291-1');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="canonical" href="https://maskbanao.com">
<link rel="alternate" hreflang="en" href="https://maskbanao.com">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://maskbanao.com" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Mask Banao">
<meta property="og:description" content="Here’s how you can use ten minutes, a piece of cloth and an old sewing machine to save someone's life.">
<meta property="og:site_name" content="Mask Banao">
<meta property="og:image" content="https://maskbanao.com/images/Web-Preview.jpg" />
<meta property="og:image:width" content="3600">
<meta property="og:image:height" content="1890">
<meta property="og:image:alt" content="https://maskbanao.com" />
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Mask Banao">
<meta property="twitter:site" content="@maskbanao">
<meta property="twitter:image" content="https://maskbanao.com/images/Web-Preview.jpg" />
<meta property="twitter:image:alt" content="https://maskbanao.com" />
<meta name="twitter:creator" content="@maskbanao">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="theme-color" content="#ffffff">
<meta name="title" content="Mask Banao">
<meta name="description" content="Here’s how you can use ten minutes, a piece of cloth and an old sewing machine to save someone's life.">
<meta name="keywords" content="mask,mask banao,jaan bachao,pakistan,covid,coronavirus">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<link rel="stylesheet" href="styles/font-awesome-all.min.css" type="text/css">
<link rel="stylesheet" href="styles/main.css" type="text/css">
<link rel="stylesheet" href="styles/index.css" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/leaflet.css" />
<link rel="stylesheet" href="styles/glide.core.min.css"/>
<link rel="stylesheet" href="styles/glide.theme.min.css"/>
<title>Mask Banao</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://maskbanao.com/#organization",
"name": "Mask Banao",
"url": "https://maskbanao.com/",
"sameAs": [
"https://www.facebook.com/maskbanao",
"https://www.instagram.com/maskbanao/",
"https://www.linkedin.com/company/maskbanao/",
"https://twitter.com/maskbanao"
],
"logo": {
"@type": "ImageObject",
"@id": "https://www.maskbanao.com/#logo",
"inLanguage": "en-US",
"url": "https://maskbanao.com/images/Web-Preview.jpg",
"caption": "Mask Banao"
},
"@context": "http://schema.org",
"description": "Here’s how you can use ten minutes, a piece of cloth and an old sewing machine to save someone's life.",
"foundingDate": "2020-04-16",
"foundingLocation": "Cambridge, USA",
"founders": [
"Sualeh Asif",
"Adan Ali",
"Turab Abbas",
"Amar Lal"
]
},
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "https://www.maskbanao.com"
}
]
}
</script>
</head>
<body>
<div id="header">
<nav class="navbar">
<a href="index.html" class="navbar-logo">
<img src="images/Mask Banao Logo long.svg" alt="Mask Banao" />
</a>
<button id="navbar-hamburger"></button>
<ul id="navigation">
<li><a onclick="removeNavActiveClass();" class="share-button" id="share-button1">Share Campaign</a></li>
<li><a href="science.html">The Science</a></li>
<li><a href="data.html">Data</a></li>
<li><a href="social.html">Social Media</a></li>
<li><a href="donate.html" class="nav-underline">Support us</a></li>
<li><a href="#make-a-mask" class="button share-button">Make a mask</a></li>
</ul>
<div class="language-container">
<!-- <div class="language-switcher">
English
</div> -->
</div>
</nav>
</div>
<div class="container">
<div id="main" class="section background-secondary">
<div class="main-text">
<h1>Mask Banao
<br />Jaan Bachao
</h1>
<p>
Ten minutes and a piece of cloth can save a citizen’s life. Here’s how you can challenge COVID-19</u>.
</p>
<a class="button button-secondary" href="#make-a-mask">Make a Mask</a>
<a class="button button-secondary-outline share-button" id="share-button2" href="#">
Share Campaign
</a>
</div>
<div class="image">
<img src="images/Mask Banao Logo white.svg" alt="Mask Banao" />
</div>
</div>
<div id="media" class="background-tertiary">
<h2>Featured in</h2>
<div class="media-carousel glide">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides media">
<li class="glide__slide">
<a href="https://images.dawn.com/news/1185249" target="_blank">
<img src="images/media/Dawn Logo.png" style="width: 150px; height: auto"/>
</a>
</li>
<li class="glide__slide">
<a href="https://www.facebook.com/bbcurdu/posts/3899240390117565" target="_blank">
<img src="images/media/BBC_Urdu.png"/>
</a>
</li>
<li class="glide__slide">
<a href="https://pk.mashable.com/coronavirus/3002/here-is-how-you-can-save-a-life-in-forty-seconds" target="_blank">
<img src="images/media/mashable-pakistan.jpg" style="width: 160px; height: auto"/>
</a>
</li>
<li class="glide__slide">
<a href="https://youtu.be/gUEJHyE5c-s?t=4458" target="_blank">
<img src="images/media/ARY News.png"/>
</a>
</li>
<li class="glide__slide">
<a href="https://www.thepeninsulaqatar.com/article/09/07/2020/NU-Q-student-responds-to-COVID-19-pandemic-in-Pakistan" target="_blank">
<img src="images/media/the-peninsula.png" style="width: 220px; height: auto"/>
</a>
</li>
<li class="glide__slide">
<a href="https://youtu.be/hN5WYWLNRos" target="_blank">
<img src="images/media/pakistan-aaj-news.png"/>
</a>
</li>
<li class="glide__slide">
<a href="https://nation.com.pk/05-Jul-2020/pakistan-s-struggle-to-promote-face-masks-in-new-normal" target="_blank">
<img src="images/media/the-nation-pakistan.png"/>
</a>
</li>
<li class="glide__slide">
<a href="https://www.qatar.northwestern.edu/news/articles/2020/07-nuq-responds-to-covid19.html" target="_blank">
<img src="images/media/northwestern-university-qatar.png"/>
</a>
</li>
<li class="glide__slide">
<img src="images/media/library-of-congress.png" style="width: 220px; height: auto;"/>
</li>
<li class="glide__slide">
<a href="http://runwaypakistan.com/mask-banao-jaan-bachao-covid-19/" target="_blank">
<img src="images/media/Runway-Pakistan.jpg" style="width: 150px; height: auto"/>
</a>
</li>
<li class="glide__slide">
<a href="https://menafn.com/1100458423/Qatar-NU-Q-student-responds-to-COVID-19-pandemic-in-Pakistan" target="_blank">
<img src="images/media/menafn.jpg" style="width: 150px; height: auto"/>
</a>
</li>
<li class="glide__slide">
<a href="https://library.columbia.edu/collections/web-archives/Ivy_Plus_Libraries.html" target="_blank">
<img src="images/media/IVY-Plus.jpg" style="width: 150px; height: auto"/>
</a>
</li>
<li class="glide__slide">
<a href="https://www.borgenmagazine.com/using-tiktok-in-pakistan-to-prevent-covid-19/" target="_blank">
<img src="images/media/borgen-magazine.jpg" style="width: 220px; height: auto;"/>
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- <div id="advisory" class="background-tertiary">
<div class="glide">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides">
<li class="glide__slide">
<div class="advisory-content">
<span>Starting April 18, 2020, Karachi has made it mandatory for everyone to wear facemasks out of their house</span>
<a href="https://www.dawn.com/news/1550094" target="_blank" class="text-link small">Source</a>
</div>
</li>
<li class="glide__slide">
<div class="advisory-content">
<span>Starting April 19, 2020, Balochistan has made it mandatory for everyone to wear facemasks out of their house</span>
<a href="https://twitter.com/LiaquatShahwani/status/1251408652491259904" target="_blank" class="text-link small">Source</a>
</div>
</li>
</ul>
</div>
</div>
</div> -->
<div id="why-make-a-mask" class="section">
<div class="center-text">
<h1 class="secondary">Why make a mask?</h1>
</div>
<div class="columns">
<div>
<h2>Healthy people can spread the virus.</h2>
<p>
COVID-19 infects people of <i>all ages</i>. Coughing, talking, or even breathing can spread virus-carrying
droplets to those around you - even if you are not showing any symptoms yet.
</p>
<p>
<b class="green">Stay at home</b> to avoid bringing the virus back or spreading it. If you must go out, wear a mask.
</p>
<!-- <div class="alert">
<i class="far fa-lightbulb"></i>
<span>Please donate professional masks (N95 and surgical masks) to doctors. Apna Mask Khud Banao!</span>
</div> -->
</div>
<div>
<img src="images/the-problem-is-real.png" alt="Pakistani with masks"/>
<a href="science.html" class="small-link">Find out more</a>
</div>
</div>
</div>
<div id="why-make-at-home" class="section background-secondary">
<div class="center-text">
<h2 class="white">Use homemade masks</h2>
<p class="white">We must save professional masks for the doctors and nurses fighting against the virus.</p>
<p class="white">Masks can easily be made from materials already in your home.</p>
<h3 class="center-text white">Apna Mask Khud Banao</h3>
</div>
</div>
<div id="make-a-mask" class="">
<div class="center-text">
<h2 class="green">How to make a mask</h2>
</div>
<div class="tabs">
<div class="tab-options">
<ul>
<li><button class="tab active" id="tab-button1">40 seconds</button></li>
<li><button class="tab" id="tab-button2">2 minutes</button></li>
<li><button class="tab" id="tab-button3">10 minutes</button></li>
<li><button class="tab" id="tab-button4">Taking care of your mask</button></li>
</ul>
</div>
<div class="tab-content">
<div id="option1" class="content active">
<div class="text">
<span class="heading">Things you Need</span>
<ol class="numbered-list" type="1">
<li>Bandana, scarf or square cotton cloth</li>
<li>Rubber bands (or hair ties)</li>
<li>Scissors</li>
</ol>
<span class="heading">Instructions</span>
<ol class="numbered-list" type="1">
<li>Fold the bandana in half.</li>
<li>Fold top down. Fold bottom up.</li>
<li>Place rubber bands or hair ties about 15 cm apart.</li>
<li>Fold both sides to the middle and tuck.</li>
<li>The mask is done. Place it over your nose and mouth.</li>
</ol>
<p class="credit">[Credit: <a
href="https://www.cdc.gov/coronavirus/2019-ncov/prevent-getting-sick/diy-cloth-face-coverings.html">CDC</a>]
</p>
</div>
<div class="tutorial-video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/CbRsb0T7Oz8" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<div class="image">
<img src="images/option-2.png" alt="how to make a mask from a t-shirt" width="100%" />
</div>
</div>
<div id="option2" class="content">
<div class="text">
<span class="heading">Things you Need</span>
<ol class="numbered-list" type="1">
<li>Scissors</li>
<li>T-shirt</li>
<li>Tissue paper or clean cloth</li>
</ol>
<span class="heading">Instructions</span>
<ol class="numbered-list" type="1">
<li>Cut the T-shirt in the indicated pattern.</li>
<li>This will form a hollow ‘mask’ with two sets of straps.</li>
<li>Take a piece of tissue paper. A clean square of cloth will also work.</li>
<li>Place the tissue paper between the front and back of the shirt.</li>
<li>The two upper straps will be placed behind your neck and the two lower straps will be placed
at the back of your head.</li>
<li>Tie the straps accordingly to form a mask which covers your nose and mouth.</li>
</ol>
</div>
<div class="tutorial-video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/hVEVve-3QeM?start=401" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="image">
<img src="images/T Shirt Mask illustrations.png" alt="how to make a mask from a t-shirt" width="100%" />
</div>
</div>
<div id="option3" class="content">
<div class="text">
<span class="heading">Things you Need</span>
<ol class="numbered-list" type="1">
<li>Two 25cm x 15cm rectangles of cotton fabric</li>
<li>Two 15cm pieces of elastic (or rubber bands, string, cloth strips, or hair ties)</li>
<li>Needle and thread (or bobby pin)</li>
<li>Scissors</li>
<li>Sewing machine</li>
</ol>
<span class="heading">Instructions</span>
<ol class="numbered-list" type="1">
<li>Cut out two 25-by-15-centimetre rectangles of cotton fabric. Use tightly woven cotton, such
as quilting fabric or cotton sheets. T-shirt fabric will work if needed. Stack the two
rectangles; you will sew the mask as if it was a single piece of fabric.</li>
<li>Fold over the long sides about 6 mm and hem them. Then fold the double layer of fabric over
1cm along the short sides and stitch down.</li>
<li>Run a 15-centimetre length of elastic through the wider hem on each side of the mask. These
will be the ear loops. Use a large needle or a bobby pin to thread it through. Tie the ends
tight. Don't have elastic? Use hair ties or elastic head bands. If you only have string, you
can make the ties longer and tie the mask behind your head.</li>
<li>Gently pull on the elastic so that the knots are tucked inside the hem. Gather the sides of
the mask on the elastic and adjust so the mask fits your face. Then securely stitch the
elastic in place to keep it from slipping.</li>
</ol>
<p class="credit">[Credit: <a
href="https://www.cdc.gov/coronavirus/2019-ncov/prevent-getting-sick/diy-cloth-face-coverings.html">CDC</a>]
</p>
</div>
<div class="tutorial-video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/VgHrnS6n4iA" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<div class="image">
<img src="images/option-3-v2.png" alt="how to make a mask from a t-shirt" width="100%" />
</div>
</div>
<div id="option4" class="content">
<div class="text">
<span class="heading">How to store your clean face mask</span>
<p>It is recommended that you make two face masks so you can wear one, while the other is washed and dried.</p>
<ol class="numbered-list" type="1">
<li>Take any plastic bag at home</li>
<li>Clean it thoroughly with soap and water</li>
<li>Let it dry well on both sides</li>
<li>Keep your extra clean face cover in this clean bag</li>
<li>Keep it sealed well</li>
<li>Now you can rotate your face masks for daily use</li>
</ol>
</div>
<div class="tutorial-video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/Fy8nwT3qo_g" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="image">
<img src="images/StoringFaceMask.jpeg" alt="how to store a face mask" width="100%" />
</div>
</div>
</div>
</div>
</div>
<div id="parosi" class="section background-secondary">
<div class="center-text">
<h1 class="white">You are as safe as your <i>parosi</i></h1>
<p class="white">This includes the <i>Doodh Wala</i> who makes that delicious <i>meethi lassi.</i><br />
The <i>Kachray Waala</i> who makes sure your house doesn’t start smelling.<br />
And the <i>Sabzi Wala</i> who sells those fresh red tomatoes.<br />
In short, we are not just talking about the friendly <i>parosi</i> next door.<br />
</p>
<!-- <a class="button button-secondary-outline" href="#make-a-mask">Donate a mask</a> -->
</div>
</div>
<div id="masks-stop-spread" class="section">
<div class="text-and-image">
<div class="image">
<img src="images/guys-in-store.png" alt="COVID-19 store" />
</div>
<div class="text">
<h1 class="green">Masks stop the spread.</h1>
<p class=""><a href="science.html">Scientific studies</a> show masks reduce the spread of virus-carrying droplets.
Masks are mandatory in many places: from Karachi and Balochistan to Singapore, Vietnam, and Czechia.</p>
</div>
</div>
</div>
<div id="stats" class="section">
<!-- <div class="center-text">
<h1 class="dark-green">Statistics</h1>
</div> -->
<div id="counts">
<div class="count-section" style="text-align: right">
<div class="estimated-infections">Estimated Infections</div>
<h1 id="estimated-infections-num" class="danger">106,006</h1>
<div class="estimated-date">as of <a target="_blank" href="http://epidemicforecasting.org/"><span id="estimated-infections-date">17/04/2020</span></a></div>
</div>
<div class="section-divider"></div>
<div class="count-section">
<div class="count-per-type">
<span>Confirmed Infected</span>
<h3 id="confirmed-cases-num">11,155</h3>
</div>
<div class="count-per-type">
<span>Confirmed Deaths</span>
<h3 id="confirmed-deaths-num" class="danger">237</h3>
</div>
<div class="count-per-type">
<span>Total Recovered</span>
<h3 id="confirmed-recovered-num" class="green">2,527</h3>
</div>
<div class="confirmed-date">as of <a target="_blank" href="http://covid.gov.pk/"><span id="confirmed-infections-date">24/04/2020, 01:10 am</span></a></div>
</div>
<div class="section-divider"></div>
<div class="count-section">
<div class="city-cases">
<div>
<span>Punjab</span>
<h3 id="confirmed-punjab">4,767</h3>
</div>
<div>
<span>Sindh</span>
<h3 id="confirmed-sindh">3,671</h3>
</div>
<div>
<span>KPK</span>
<h3 id="confirmed-kp">1,541</h3>
</div>
<div>
<span>Balochistan</span>
<h3 id="confirmed-balochistan">607</h3>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="divider"></div> -->
<!--<div id="map-container" class="section">-->
<!--<div class="center-text">-->
<!--<h1>Corona Virus Heatmap</h1>-->
<!--<a href="data.html" class="text-link">learn more</a>-->
<!--</div>-->
<!--<div class="map" id="data"></div>-->
<!--<div class="center-text"><span class="small">current active cases in Pakistan</span></div>-->
<!--</div>-->
<div id="news-carousel" class="section background-tertiary">
<!-- <div class="center-text">
<h1 class="secondary mb-0">Quotes</h1>
</div> -->
<div class="news-carousel glide hero">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides">
<li class="glide__slide">
<div class="slide general-quote">
<span>The U.S. “CDC (Center for Disease Control) recommends wearing cloth face coverings in
public settings” because “a significant portion of individuals with coronavirus lack
symptoms” and they can be contagious spreaders of the virus.<br><a class="quote-credit" target="_blank" href="https://www.cdc.gov/">United States CDC (Center for Disease Control)</a></span>
</div>
</li>
<li class="glide__slide">
<div class="slide general-quote">
<!-- <img class="quote-img" src="https://149421589.v2.pressablecdn.com/wp-content/uploads/2020/03/quote-icon.png"/> -->
<span>"If everybody [wears homemade masks], we're protecting each other." <br><a
class="quote-credit" target="_blank" href="https://www.cnn.com/2020/03/31/politics/public-wearing-masks-coronavirus-anthony-fauci-cnntv/index.html">-
Dr. Anthony Fauci, U.S. director of the National Institute of Allergy and Infectious
Diseases</a></span>
</div>
</li>
<li class="glide__slide">
<div class="slide general-quote">
<!-- <img class="quote-img" src="https://149421589.v2.pressablecdn.com/wp-content/uploads/2020/03/quote-icon.png"/> -->
<span>"I think that wearing a mask is equally effective or more effective than
distancing."<br><a class="quote-credit" target="_blank" href="https://twitter.com/johnmcclean_ie/status/1245663285791330304">- Professor David
Heymann, World Health Organization (WHO) advisor</a></span>
</div>
</li>
<li class="glide__slide">
<div class="slide general-quote">
<span> Special thanks to <a href="https://masks4all.co" target="_blank"
class="dark-green">masks4all.co</a> for the information, data, and visual aids. Please
check out their website for more!</span>
</div>
</li>
</ul>
</div>
<div class="glide__arrows" data-glide-el="controls">
<button class="glide__arrow glide__arrow--left" data-glide-dir="<"><i
class="fas fa-2x fa-chevron-left"></i></button>
<button class="glide__arrow glide__arrow--right" data-glide-dir=">"><i
class="fas fa-2x fa-chevron-right"></i></button>
</div>
<div class="glide__bullets" data-glide-el="controls[nav]">
<button class="glide__bullet" data-glide-dir="=0"></button>
<button class="glide__bullet" data-glide-dir="=1"></button>
<button class="glide__bullet" data-glide-dir="=2"></button>
<button class="glide__bullet" data-glide-dir="=3"></button>
</div>
</div>
</div>
<div id="instagram" class="section">
<div class="center-text">
<h1 class="dark-green">Aao Hum Bhi Banayein</h1>
</div>
<div class="tweets glide hero">
<div class="glide__arrows" data-glide-el="controls">
<button class="glide__arrow glide__arrow--left" data-glide-dir="<" title="Previous"><i class="fas fa-2x fa-chevron-left"></i></button>
<button class="glide__arrow glide__arrow--right" data-glide-dir=">" title="Next"><i class="fas fa-2x fa-chevron-right"></i></button>
</div>
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides" style="margin-bottom: 0; margin-top: 0px;">
<li class="glide__slide">
<div class="tweet">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Uqba goes to buy groceries, but she also cares about the health of her beta and beti. Hence, before she steps out, Uqba picks up a clean yet vibrantly patterned piece of cloth and makes a mask. <br>.<br>If you love your family as Uqba does, Mask Banao aur Jaan Bachao!<br>.<a href="https://twitter.com/hashtag/MeraMask?src=hash&ref_src=twsrc%5Etfw">#MeraMask</a> <a href="https://t.co/vZJpwk1aEK">pic.twitter.com/vZJpwk1aEK</a></p>— Mask Banao (@MaskBanao) <a href="https://twitter.com/MaskBanao/status/1260703699929903107?ref_src=twsrc%5Etfw">May 13, 2020</a></blockquote>
</div>
</li>
<li class="glide__slide">
<div class="tweet">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Here is Hadiqa Kiani's message to you in the face of COVID-19: "One precautionary step, which we can all take together, is that we should make homemade masks."<br>.<br>It only takes 40 seconds to make a mask and protect your loved ones! <br>.<a href="https://twitter.com/hashtag/MaskBanaoJaanBachao?src=hash&ref_src=twsrc%5Etfw">#MaskBanaoJaanBachao</a><a href="https://twitter.com/Hadiqa_Kiani?ref_src=twsrc%5Etfw">@Hadiqa_Kiani</a> <a href="https://t.co/BmCO4vWwTU">pic.twitter.com/BmCO4vWwTU</a></p>— Mask Banao (@MaskBanao) <a href="https://twitter.com/MaskBanao/status/1256333499797127168?ref_src=twsrc%5Etfw">May 1, 2020</a></blockquote>
</div>
</li>
<li class="glide__slide">
<div class="tweet">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Mera mask zindagi aapki! Your neighbours are wearing masks to protect you. Are you protecting them? All it takes to make a homemade mask is a piece of cloth, elastic, and a few minutes. <br>.<br>Send us a picture of your mask to share what you are doing for your community!<br>.<a href="https://twitter.com/hashtag/MeraMask?src=hash&ref_src=twsrc%5Etfw">#MeraMask</a> <a href="https://t.co/nL1U5wqNMT">pic.twitter.com/nL1U5wqNMT</a></p>— Mask Banao (@MaskBanao) <a href="https://twitter.com/MaskBanao/status/1257052424365318145?ref_src=twsrc%5Etfw">May 3, 2020</a></blockquote>
</div>
</li>
<li class="glide__slide">
<div class="tweet">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">If you care at all about the person next to you, your family members, your neighbors and your friends, wear a mask. <br>.<br>You have the ability to save someone's life. Don't take this situation lightly, use this ability and wear your mask!<br>.<a href="https://t.co/12Wm7oJ5zd">https://t.co/12Wm7oJ5zd</a> <a href="https://t.co/9yjeXab5HI">pic.twitter.com/9yjeXab5HI</a></p>— Mask Banao (@MaskBanao) <a href="https://twitter.com/MaskBanao/status/1291364979283828737?ref_src=twsrc%5Etfw">August 6, 2020</a></blockquote>
</div>
</li>
<li class="glide__slide">
<div class="tweet">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">If Zoe Viccaji can turn a pretty pink piece of cloth into a life saving accessory—you can too! Simply choose a clean cloth, grab two rubber bands and follow the instructions at <a href="https://t.co/12Wm7oJ5zd">https://t.co/12Wm7oJ5zd</a>. <br>.<br>@Zoeviccaji<a href="https://twitter.com/hashtag/MaskBanao?src=hash&ref_src=twsrc%5Etfw">#MaskBanao</a><a href="https://twitter.com/hashtag/MeraMask?src=hash&ref_src=twsrc%5Etfw">#MeraMask</a> <a href="https://t.co/WwAuJ4JxzI">pic.twitter.com/WwAuJ4JxzI</a></p>— Mask Banao (@MaskBanao) <a href="https://twitter.com/MaskBanao/status/1255954037226307584?ref_src=twsrc%5Etfw">April 30, 2020</a></blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
<div id="call-to-action" class="background-secondary section center-text">
<h2 class="white">
<table>
<tr><td>It’s on <em>you</em> to</td><td><em> save </em> your self</td></tr>
<tr><td></td><td><em> save </em> your family</td></tr>
<tr><td></td><td><em> save </em> your neighbors</td></tr>
<tr><td></td><td><em> save </em> your country<span class="black">.</span></td></tr>
</table>
</h2>
<h3>#MaskBanaoJaanBachao</h3>
<div class="center-text">
<a class="button button-secondary-outline" href="about.html">About us</a>
<a class="button button-secondary" href="#make-a-mask">Make a mask</a>
</div>
<div class="social-icons">
<a href="https://www.facebook.com/maskbanao" target="_blank">
<i class="fab fa-facebook-square"></i>
</a>
<a href="https://www.instagram.com/maskbanao/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
<a href="mailto:[email protected]">
<i class="fas fa-envelope"></i>
</a>
<a href="https://twitter.com/maskbanao" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.linkedin.com/company/maskbanao/" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div id="footer">
<ul class="footer-links">
<li><a href="mailto:[email protected]">[email protected]</a></li>
<li class="float-right">Special thanks to <a href="https://masks4all.co/">masks4all.co</a></li>
</ul>
</div>
</div>
<div id="share-section">
<div class="share-dialog">
<header>
<h3 class="dialog-title">Share this campaign</h3>
<button class="close-button"><svg><use href="#close"></use></svg></button>
</header>
<div class="targets">
<a class="button" href="https://www.facebook.com/sharer/sharer.php?u=https://maskbanao.com" target="_blank">
<svg>
<use href="#facebook"></use>
</svg>
<span>Facebook</span>
</a>
<a class="button" href="https://twitter.com/intent/tweet?hashtags=MaskBanao,MaskBanaoJaanBachao&original_referer=http%3A%2F%2Flocalhost%2F&ref_src=twsrc%5Etfw&text=%20Ten%20minutes%20and%20a%20piece%20of%20cloth%20can%20save%20a%20citizen%E2%80%99s%20life.%20Here%E2%80%99s%20how%20you%20can%20challenge%20COVID-19.%20&tw_p=tweetbutton&url=http%3A%2F%2Fmaskbanao.com%2F" target="_blank">
<svg>
<use href="#twitter"></use>
</svg>
<span>Twitter</span>
</a>
<a class="button" href="https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fmaskbanao.com">
<svg>
<use href="#linkedin"></use>
</svg>
<span>LinkedIn</span>
</a>
<a class="button" onclick="copyToClipboard('https://maskbanao.com/')">
<span>Copy Link</span>
</a>
</div>
</div>
<svg class="hidden">
<defs>
<symbol id="share-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-share"><path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"></path><polyline points="16 6 12 2 8 6"></polyline><line x1="12" y1="2" x2="12" y2="15"></line></symbol>
<symbol id="facebook" viewBox="0 0 24 24" fill="#3b5998" stroke="#3b5998" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-facebook"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path></symbol>
<symbol id="twitter" viewBox="0 0 24 24" fill="#1da1f2" stroke="#1da1f2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-twitter"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path></symbol>
<symbol id="email" viewBox="0 0 24 24" fill="#777" stroke="#fafafa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-mail"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></symbol>
<symbol id="linkedin" viewBox="0 0 24 24" fill="#0077B5" stroke="#0077B5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-linkedin"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle></symbol>
<symbol id="close" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x-square"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="9" x2="15" y2="15"></line><line x1="15" y1="9" x2="9" y2="15"></line></symbol>
</defs>
</svg>
</div>
<div class="backdrop"></div>
<script>
const shareButton1 = document.querySelector('#share-button1');
const shareButton2 = document.querySelector('#share-button2');
const shareDialog = document.querySelector('.share-dialog');
const closeButton = document.querySelector('.close-button');
const backdrop = document.querySelector('.backdrop');
shareButton1.addEventListener('click', event => {
if (navigator.share) {
navigator.share({
title: 'Mask Banao',
url: document.URL
}).then(() => {
console.log('Thanks for sharing!');
})
.catch(console.error);
} else {
shareDialog.classList.add('is-open');
document.querySelector(".backdrop").style.display = "block";
}
});
shareButton2.addEventListener('click', event => {
if (navigator.share) {
navigator.share({
title: 'Mask Banao',
url: document.URL
}).then(() => {
console.log('Thanks for sharing!');
})
.catch(console.error);
} else {
shareDialog.classList.add('is-open');
document.querySelector(".backdrop").style.display = "block";
}
});
backdrop.addEventListener('click', closeDialog);
closeButton.addEventListener('click', closeDialog);
function closeDialog() {
shareDialog.classList.remove('is-open');
document.querySelector(".backdrop").style.display = "none";
}
const copyToClipboard = str => {
const el = document.createElement('textarea'); // Create a <textarea> element
el.value = str; // Set its value to the string that you want copied
el.setAttribute('readonly', ''); // Make it readonly to be tamper-proof
el.style.position = 'absolute';
el.style.left = '-9999px'; // Move outside the screen to make it invisible
document.body.appendChild(el); // Append the <textarea> element to the HTML document
const selected =
document.getSelection().rangeCount > 0 // Check if there is any content selected previously
? document.getSelection().getRangeAt(0) // Store selection if found
: false; // Mark as false to know no selection existed before
el.select(); // Select the <textarea> content
document.execCommand('copy'); // Copy - only works as a result of a user action (e.g. click events)
document.body.removeChild(el); // Remove the <textarea> element
if (selected) { // If a selection existed before copying
document.getSelection().removeAllRanges(); // Unselect everything on the HTML document
document.getSelection().addRange(selected); // Restore the original selection
}
};
</script>
<button onclick="scrollToTopFn()" id="scrollToTop" title="Go to top"><i class="fa fa-angle-double-up"></i></button>
<script src="js/pagescroll.js"></script>
<script src="js/axios.js"></script>
<!--<script src="js/leaflet.js"></script>-->
<!--<script src="js/pakistan_data.js"></script>-->
<!--<script src="js/pakistan_districts.js"></script>-->
<script src="js/glide.js"></script>
<script src="js/navbar.js"></script>
<script src="js/main.js"></script>
<script src="js/index.js"></script>
<!--<script src="js/map.js"></script>-->
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</body>
</html>