-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1460 lines (1288 loc) · 132 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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Maryland Vaccine Dashboard</title>
<meta name="description" content="Merrill College of Journalism, UMD">
<meta name="author" content="CNS Maryland">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- FontAwesome JS Call -->
<script src="https://kit.fontawesome.com/2ce7dad615.js" crossorigin="anonymous"></script>
<!-- our CSS -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!--Font call-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,800;1,400;1,600;1,800&display=swap" rel="stylesheet">
<!--Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@cnsmaryland">
<meta name="twitter:title" content="Maryland Vaccine Dashboard">
<meta name="twitter:description" content="A resource for Marylanders to help navigate the sometimes confusing process of getting vaccinated.">
<meta name="twitter:creator" content="@cnsmaryland">
<meta name="twitter:image" content="https://cnsmaryland.org/interactives/spring-2021/vaccine/images/social.png" />
<!--Facebook OpenGraph-->
<meta property="og:title" content="Maryland Vaccine Dashboard">
<meta property="og:type" content="article" />
<meta property="og:url" content="https://cnsmaryland.org/interactives/spring-2021/vaccine/index.html">
<meta property="og:description" content="A resource for Marylanders to help navigate the sometimes confusing process of getting vaccinated.">
<meta property="og:image" content="https://cnsmaryland.org/interactives/spring-2021/vaccine/images/social-twitter.png" />
<meta property="og:site_name" content="CNS Maryland">
<meta property="fb:app_id" content="209502139105366" />
<!-- METRICS -->
<meta name="parsely-title" content="Maryland Vaccine Dashboard" />
<meta name="parsely-link" content="https://cnsmaryland.org/interactives/spring-2021/vaccine/index.html" />
<meta name="parsely-type" content="post" />
<meta name="parsely-pub-date" content="2021-03-03T12:00:00Z" />
<meta name="parsely-section" content="Investigations" />
<meta name="parsely-author" content="CNS Maryland" />
<meta name="parsely-tags" content="investigative journalism, interactives" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="http://cnsmaryland.org/">
<img src="logo.png" id="logo">
</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link active" href="#vax-md-navbar">Get vaccinated in Maryland <span class="sr-only">(current)</span></a>
<a class="nav-item nav-link" href="#county-navbar">County info</a>
<a class="nav-item nav-link" href="#faq-navbar">FAQs</a>
<a class="nav-item nav-link" href="#vax-data-navbar">Vaccination data</a>
</div>
</div>
</nav>
<!-- Start container -->
<div class="container">
<br><br>
<h1> Maryland Vaccine Dashboard </h1>
<!-- Social icons-->
<div id="social-icons">
<span class="icon-facebook"></span><span class="icon-twitter"></span>
</div>
<h5> LAST UPDATED: MAY 6, 2021 </h5>
<br>
<p> <strong>This vaccine site is no longer updated as of May 6, 2021. Maryland opened vaccinations open to everyone in the state in early April. <strong></p>
<p> The Capital News Service Maryland COVID-19 Vaccine Dashboard is a resource for Marylanders to help navigate the sometimes confusing process of getting vaccinated. Below you will find information on where to sign up to be vaccinated in Maryland, including local resources for the four most populated counties in the state and Baltimore City.</p>
<div id="vax-md-navbar">
<br><br/><h2> How to get vaccinated in Maryland:</h2>
<br/>
<br/>
</div>
<!-- MARYLAND ACCORDION START -->
<div class="row">
<div class="col-lg-10 mx-auto">
<div id="accordionMaryland" class="accordion shadow">
<!-- Maryland Accordion Item-->
<div class="card">
<div id="headingMaryland" class="card-header bg-white shadow-sm border-0">
<h6 class="mb-0 font-weight-bold"><a data-toggle="collapse" data-target="#collapseMaryland" aria-expanded="true" aria-controls="collapseMaryland" class="d-block position-relative text-dark text-uppercase collapsible-link py-2">Maryland Vaccine Information</a></h6>
</div>
<div id="collapseMaryland" aria-labelledby="headingMaryland" data-parent="#accordionMaryland" class="collapse show">
<div class="card-body p-5">
<h4><strong>Who can get vaccinated:</strong><br></h4>
<p>Maryland entered Phase 3 on April 6, 2021. </p>
<p class="font-weight-light m-0">Maryland officials have said that individuals who became eligible to receive the vaccine in previous phases will continue to be prioritized. This includes the following people: </p>
<br><br>
<div id="smallaccordion" class="smallaccordion">
<!-- Smal accordion for PHASES 1-->
<div id="headingphase1a" class="card-header-small collapsed" data-toggle="collapse" href="#collapsephase1a">
<a class="card-title" id="phase1a">
PHASE 1A
</a>
</div>
<div id="collapsephase1a" class="card-body collapse" data-parent="#smallaccordion" >
<p class= "font-weight-light m-0"> <ul>
<li> All licensed, registered and certified healthcare providers. </li>
<li> Nursing home residents and staff. </li>
<li> Frontline hospital staff.</li>
<li> Law enforcement. </li>
<li> Firefighters. </li>
<li> EMS personnel. </li>
<li> Correctional healthcare staff and officers. </li>
<li> Frontline judiciary staff. </li>
<li> Continuity of government workers. </li>
</ul> </p>
</div>
<hr>
<div id="headingphase1b" class="card-header-small collapsed" data-toggle="collapse" href="#collapsephase1b">
<a class="card-title" id="phase1b">
<bold> PHASE 1B </bold>
</a>
</div>
<div id="collapsephase1b" class="card-body collapse" data-parent="#smallaccordion" >
<p class= "font-weight-light m-0"> <ul>
<li> Anyone 75 and over.</li>
<li> Anyone in assisted living, independent living, and other congregate facilities. </li>
<li> Individuals with intellectual and developmental disabilities.</li>
<li> High-risk incarcerated individuals.</li>
<li> Continuity of government workers. </li>
<li>Education staff, including K-12 teachers, support staff, and daycare providers. </li>
</ul> </p>
</div>
<hr>
<div id="headingphase1c" class="card-header-small collapsed" data-toggle="collapse" href="#collapsephase1c">
<a class="card-title" id="phase1c">
PHASE 1C
</a>
</div>
<div id="collapsephase1c" class="card-body collapse" data-parent="#smallaccordion" >
<p class= "font-weight-light m-0"> <ul>
<li> Anyone 65 and over.</li>
<li> All public safety workers. </li>
<li> All healthcare workers. </li>
<li> Frontline judiciary staff. </li>
<li> Grocery store workers. </li>
<li> U.S.P.S. workers. </li>
<li> Agricultural production workers. </li>
<li> Public mass transit workers. </li>
<li> Critical manufacturing workers. </li>
<li> Veterinarians and veterinary support staff. </li>
<li> Clergy and other essential support for houses of worship. </li>
</ul> </p>
</div>
<hr>
<div id="headingphase2a" class="card-header-small collapsed" data-toggle="collapse" href="#collapsephase2a">
<a class="card-title" id="phase2a">
PHASE 2A
</a>
</div>
<div id="collapsephase2a" class="card-body collapse" data-parent="#smallaccordion" >
<p class= "font-weight-light m-0"> <ul>
<li> Anyone 60 and over became eligible on March 23.</li>
</ul> </p>
</div>
<hr>
<div id="headingphase2b" class="card-header-small collapsed" data-toggle="collapse" href="#collapsephase2b">
<a class="card-title" id="phase2b">
PHASE 2B
</a>
</div>
<div id="collapsephase2b" class="card-body collapse" data-parent="#smallaccordion" >
<p class= "font-weight-light m-0"> <ul>
<li> Anyone 16 and older with underlying medical conditions that can increase the risk for severe COVID-19 illness will be eligble starting March 31.</li>
<li>Marylanders ages 16+ with disabilities who are receiving SSI or SSDI benefits, Maryland Medicaid EID individuals, Maryland Medicaid REM recipients, and Marylanders receiving TDAP benefits.</li>
<li>Marylanders receiving long term services and support through the state’s Medicaid waiver and state plan services.</li>
</ul> </p>
</div>
<hr>
<div id="headingphase2c" class="card-header-small collapsed" data-toggle="collapse" href="#collapsephase2c">
<a class="card-title" id="phase2c">
PHASE 2C
</a>
</div>
<div id="collapsephase2c" class="card-body collapse" data-parent="#smallaccordion" >
<p class= "font-weight-light m-0"> <ul>
<li> Anyone 55 and over, construction, food service, utilities, transportation, financial services, IT and other infrastructure workers will be eligble starting April 13. </li>
</ul> </p>
</div>
<hr>
<div id="headingphase3" class="card-header-small collapsed" data-toggle="collapse" href="#collapsephase3">
<a class="card-title" id="phase3">
PHASE 3
</a>
</div>
<div id="collapsephase3" class="card-body collapse" data-parent="#smallaccordion" >
<p class= "font-weight-light m-0"> <ul>
<li> The general population, including healthy adults aged 16 and over, will be eligible to receive a vaccine at any mass vaccination site starting April 6.</li>
<li> By April 12, all vaccine providers in the state will be required to distribute the vaccine to anyone 16 and older.</li>
</ul> </p>
</div>
<hr>
</div>
<p><a href="https://covidlink.maryland.gov/content/vaccine/" target="_blank" rel="noopener noreferrer"> More information about Maryland COVID-19 vaccine priority groups can be found here.</a></p>
<p>Maryland operates several mass vaccination centers, including at Six Flags America, M&T Bank Stadium, Charles County Regency Furniture Stadium and the Baltimore Convention Center, with more scheduled to open in the near future. Individuals can <a href="https://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer">register here</a>, call <a href="tel:8556346829">1-855-634-6829</a> for assistance or text “MDREADY” to 898-211 to receive text notifications on their smartphones regarding updates about Six Flags and the state’s other mass vaccination sites. <a href="sms:+898211&body=MDREADY%2520" class="txthide">Click here to text to receive updates.</a>
<p><strong>If you are currently eligible for a vaccine in Maryland or will be soon, you can use Maryland OneStop to preregister for an appointment at a mass vaccination site.</strong> Create an account at <a href="https://onestop.md.gov/preregistration" target="_blank" rel="noopener noreferrer">OneStop</a> and fill out the form. OneStop will contact you with instructions on how to schedule an appointment.</p>
<p>Marylanders can also get vaccinated at several pharmacies operating across the state. CVS, Giant and other pharmacies are inoculating Marylanders whenever vaccines are available but appointment slots can fill up quickly.</p>
<p>Several hospitals and health providers are also providing vaccinations, including Johns Hopkins Hospital, Greater Baltimore Medical Center, Sinai Hospital and others. Check individual hospital websites for more information. </p>
<p> Visit Maryland’s <a href="https://coronavirus.maryland.gov/pages/vaccine" target="_blank" rel="noopener noreferrer"> vaccination clinic locator</a> for more information and to see new sites as they are added. Or visit the <a href="https://vaccinefinder.org/search/" target="_blank" rel="noopener noreferrer"> CDC’s Vaccine Finder</a> and enter your zip code to find COVID-19 vaccination locations near you. The <a href="https://www.facebook.com/groups/462938984877900/" target="_blank" rel="noopener noreferrer">Maryland Vaccine Hunters</a> Facebook group also maintains a spreadsheet of locations and advice, <a href="https://docs.google.com/spreadsheets/u/1/d/e/2PACX-1vS2roAdufzrNZ8f2Cny_8_SVmnLaT3WS19_y31cbAkx-fPVfYO6Upvyo3ZkQBrov6G9ZGPhmp46I1zY/pubhtml?fbclid=IwAR2ofuxj2e_z_6GjZf65Z-QcSFkPNwV8Y3PlCDDIORAPoKnSpzGMQrhU5o4" target="_blank" rel="noopener noreferrer">located here.</a> All locations require appointments and/or pre-registration.</p>
<br><h4><strong>Where to get vaccinated:</strong></h4>
<p><em>Click on a location for more info.</em></p>
<!-- SMALL ACCORDION FOR VAX SITES START -->
<div id="smallaccordion" class="smallaccordion">
<!-- Smal accordion for vax sites item #1: Baltimore convention center-->
<div id="bltconvention" class="card-header-small collapsed" data-toggle="collapse" href="#collapsebltconvention">
<a class="card-title">
Baltimore Convention Center
</a>
</div>
<div id="collapsebltconvention" class="card-body collapse" data-parent="#smallaccordion" >
<!--<p class="font-weight-light m-0">
Baltimore Convention Center
</p> -->
<p> The Baltimore Convention Center Field Hospital is serving as a COVID-19 mass vaccination location. To request an appointment, complete the <a href="https://www.vaccination-registration.com/umms/bccfh" target="_blank" rel="noopener noreferrer"> appointment request form</a>. When you are eligible and an appointment is available, you will be contacted and told how to schedule an appointment. The vaccination clinic takes place Monday through Saturday. You must have an appointment and come at your scheduled time. Walk-ins are not accepted.</p>
<p><strong>Phone:</strong> <a href="tel:4434625511"><i class="fas fa-phone"></i> 443-462-5511</a> <em>(Monday through Friday, 9 a.m. - 4:30 p.m.) </em></p>
<a class="btn btn-primary" href="https://www.vaccination-registration.com/umms/bccfh" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/The+Baltimore+Convention+Center/@39.2853905,-76.6258459,15z/data=!3m1!4b1!4m5!3m4!1s0x89c80360f5a421a9:0xd3299969b90b590d!8m2!3d39.2853908!4d-76.6171126" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://www.umms.org/coronavirus/covid-vaccine/get-vaccine/baltimore-convention-center-vaccine" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #2: SIX flags-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseSixFlags">
<a class="card-title">
Six Flags
</a>
</div>
<div id="collapseSixFlags" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Six Flags America is serving as a COVID-19 mass vaccination location. In order to receive a vaccine appointment, first you must pre-register <a href="https://covidvax.maryland.gov/preregistration" target="_blank" rel="noopener noreferrer"> here</a>. The state will contact you with directions on how to book an appointment, based on the availability of vaccines.</p> <br>
<p><strong>Phone:</strong> <a href="tel:8556346829"><i class="fas fa-phone"></i> 1-855-634-6829</a></p>
<a class="btn btn-primary" href="https://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://coronavirus.maryland.gov/pages/vaccine" target="_blank" rel="noopener noreferrer" role="button">Preregister</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/Six+Flags+America/@38.9061112,-76.7813158,15z/data=!3m1!4b1!4m5!3m4!1s0x89b7eb2b957b7849:0xc966c337bc741434!8m2!3d38.9061115!4d-76.7725825" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
</div>
<hr>
<!-- Small accordion for vax sites item: M&T bank-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseMTbank">
<a class="card-title">
M&T Bank Stadium
</a>
</div>
<div id="collapseMTbank" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
M&T Bank Stadium is serving as a COVID-19 mass vaccination location. To check the availability of appointments, visit <a href="https://www.umms.org/coronavirus/covid-vaccine/get-vaccine/mtb-stadium" target="_blank" rel="noopener noreferrer"> this site</a> and click the yellow “Start the Online Process Here” button or call the number below. Confirm your eligibility for a vaccination to proceed. Walk-up appointments are available.<br>
<br><p><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-6829</a></p>
<a class="btn btn-primary" href="https://www.umms.org/coronavirus/covid-vaccine/get-vaccine/mtb-stadium" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://coronavirus.maryland.gov/pages/vaccine" target="_blank" rel="noopener noreferrer" role="button">Preregister</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/1101+Russell+St,+Baltimore,+MD+21230/@39.2776277,-76.6235587,17.64z/data=!4m5!3m4!1s0x89c8034347212ddb:0xa78f61890a7cc552!8m2!3d39.2778356!4d-76.6228886" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
</div>
<hr>
<!-- Small accordion for vax sites item: regency furniture stadium-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseregency">
<a class="card-title">
Regency Furniture Stadium
</a>
</div>
<div id="collapseregency" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Regency Furniture Stadium is serving as a COVID-19 mass vaccination location. In order to receive a vaccine appointment, first you must pre-register <a href="https://covidvax.maryland.gov/preregistration" target="_blank" rel="noopener noreferrer"> here</a>. The state will contact you with directions on how to book an appointment, based on the availability of vaccines. Walk-up appointments are available. <br>
<br><p><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-6829</a></p>
<a class="btn btn-primary" href="https://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://coronavirus.maryland.gov/pages/vaccine" target="_blank" rel="noopener noreferrer" role="button">Preregister</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/11765+St+Linus+Dr,+Waldorf,+MD+20602/@38.5628618,-76.9062171,17z/data=!3m1!4b1!4m5!3m4!1s0x89b70a17ce81e619:0xc4a0e14aa3abfa6f!8m2!3d38.5628576!4d-76.9040284" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
</div>
<hr>
<!-- Small accordion for vax sites item: hagerstown premium outlets-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsehagerstown">
<a class="card-title">
Hagerstown Premium Outlets
</a>
</div>
<div id="collapsehagerstown" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Hagerstown Premium Outlets is serving as a COVID-19 mass vaccination location. In order to receive a vaccine appointment, first you must pre-register <href="https://covidvax.maryland.gov/preregistration" target="_blank" rel="noopener noreferrer">here</a>. The state will contact you with directions on how to book an appointment, based on the availability of vaccines. Walk-up appointments are available.<br>
<br><p><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-6829</a></p>
<a class="btn btn-primary" href="https://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://coronavirus.maryland.gov/pages/vaccine" target="_blank" rel="noopener noreferrer" role="button">Preregister</a>
<a class="btn btn-primary" href="https://www.google.com/maps/search/495+Premium+Outlet+Blvd,+Hagerstown,+MD+21740/@39.6076702,-77.7360709,17z/data=!3m1!4b1" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
</div>
<hr>
<!-- Small accordion for vax sites item #4: CVS-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseCVS">
<a class="card-title">
CVS
</a>
</div>
<div id="collapseCVS" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
CVS is offering COVID-19 vaccinations at various locations throughout Maryland. To check the availability of appointments visit <a href="https://www.cvs.com/vaccine/intake/store/cvd-schedule?icid=coronavirus-lp-vaccine-sd-statetool" target="_blank" rel="noopener noreferrer"> this site</a>. You may need to wait several minutes or longer on the web page before you are able to proceed. Proceed through the CVS vaccine screening process to schedule your vaccine appointment.</p><br>
<p><strong>Phone:</strong> <a href="tel:18006799691"><i class="fas fa-phone"></i> 1-800-679-9691</a> <em> and press 1</em></p>
<a class="btn btn-primary" href="https://www.cvs.com/vaccine/intake/store/cvd-schedule?icid=coronavirus-lp-vaccine-sd-statetool" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/search/cvs/" target="_blank" rel="noopener noreferrer" role="button">Find your local store</a>
<a class="btn btn-primary" href="https://www.cvs.com/immunizations/covid-19-vaccine" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #4: federal pilot-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsefp">
<a class="card-title">
Federal Pilot Community Vaccination Center
</a>
</div>
<div id="collapsefp" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
In cooperation with the Federal Emergency Management Agency, Maryland is opening up a COVID-19 mass vaccination site at the Greenbelt Metro Station. The Greenbelt site will open Apr. 7.</p><br>
<p><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-6829</a></p>
<a class="btn btn-primary" href="http://covidlink.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/Greenbelt+Metro+Dr,+Berwyn+Heights,+MD+20740/@39.0117031,-76.9070921,17z/data=!3m1!4b1!4m5!3m4!1s0x89b7c3ed974e2acd:0x3376d54dcad8fc1f!8m2!3d39.011699!4d-76.9048981" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="http://covidlink.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #7: frederick community college-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsefrederick">
<a class="card-title">
Frederick Community College
</a>
</div>
<div id="collapsefrederick" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Frederick Community College is serving as a COVID-19 mass vaccination location. In order to receive a vaccine appointment, first you must pre-register <a href="http://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">here</a>. The state will contact you with directions on how to book an appointment, based on the availability of vaccines.</p><br>
<p><br><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-68291</a></p>
<a class="btn btn-primary" href="https://onestop.md.gov/preregistration" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/Student+Center,+7932+Opossumtown+Pike,+Frederick,+MD+21702/@39.4514535,-77.4197647,17z/data=!3m1!4b1!4m5!3m4!1s0x89c9dad0c6d9221d:0x1122ae21bfd16767!8m2!3d39.4514494!4d-77.4175707" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://onestop.md.gov/preregistration" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #4: Giant-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseGiant">
<a class="card-title">
Giant
</a>
</div>
<div id="collapseGiant" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Giant is offering COVID-19 vaccinations at various locations throughout Maryland. To check the availability of appointments click <a href="https://giantfoodsched.rxtouch.com/rbssched/program/covid19/Patient/Advisory" target="_blank" rel="noopener noreferrer"> here</a>. Come to Giant at your scheduled day and time, bring your driver’s license (for age confirmation), healthcare professional ID/work badge (proof of Phase 1 status for employment), and prescription insurance card. Fill out Giant’s informed consent form, which you’ll be emailed or you can fill out a hard copy in-person on the day of your appointment.</p><br>
<p><strong>Phone:</strong> <a href="https://www.google.com/maps/search/giant+food/@38.9887664,-76.9507811,12z/data=!3m1!4b1" target="_blank" rel="noopener noreferrer"><i class="fas fa-phone"></i> Call your local store </a></p>
<a class="btn btn-primary" href="https://giantfoodsched.rxtouch.com/rbssched/program/covid19/Patient/Advisory" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/search/giant+food/" target="_blank" rel="noopener noreferrer" role="button">Find your local store</a>
<a class="btn btn-primary" href="https://giantfood.com/pages/covid-info" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item: Johns Hopkins-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsebc2">
<a class="card-title">
Johns Hopkins Medicine
</a>
</div>
<div id="collapsebc2" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Johns Hopkins Medicine is providing vaccinations at locations throughout Maryland. Johns Hopkins Medicine is using a randomized lottery process to select and invite eligible vaccine recipients to schedule an appointment. Current eligible patients will be contacted by Johns Hopkins for appointments. They are not accepting phone calls for vaccine appointments.</p> <br>
<p><strong>Phone:</strong> <a href="tel:4109555000"><i class="fas fa-phone"></i> 410-955-5000</a></p>
<a class="btn btn-primary" href="https://mychart.hopkinsmedicine.org/mychart/signup" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/Johns+Hopkins+Bayview+Medical+Center/@39.2901622,-76.5492959,17z/data=!3m1!4b1!4m5!3m4!1s0x89c806a7e50e9663:0x3f8ffc916f50817f!8m2!3d39.2901622!4d-76.5471072" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://www.hopkinsmedicine.org/coronavirus/covid-19-vaccine/maryland.html#locations" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #9: Kaiser-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseKaiser">
<a class="card-title">
Kaiser
</a>
</div>
<div id="collapseKaiser" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Kaiser Permanente is offering COVID-19 vaccines for members only.</p><br>
<p><strong>Phone:</strong><a href="tel:18555500951"><i class="fas fa-phone"></i> 1-855-550-0951 </a></p>
<a class="btn btn-primary" href="https://thrive.kaiserpermanente.org/care-near-mid-atlantic/locate-facility" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://thrive.kaiserpermanente.org/care-near-mid-atlantic/locate-facility" target="_blank" rel="noopener noreferrer" role="button">Find your local clinic</a>
<a class="btn btn-primary" href="https://healthy.kaiserpermanente.org/maryland-virginia-washington-dc/health-wellness/coronavirus-information/covid-vaccine " target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #9: leidos-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseleidos">
<a class="card-title">
Leidos Field at Ripken Ironbirds Stadium
</a>
</div>
<div id="collapseleidos" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Leidos Field at Ripken Ironbirds Stadium is serving as a COVID-19 mass vaccination location. In order to receive a vaccine appointment, first you must pre-register <a href="http://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">here</a>. The state will contact you with directions on how to book an appointment, based on the availability of vaccines. </p><br>
<p><strong>Phone:</strong><a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-6829 </a></p>
<a class="btn btn-primary" href="https://onestop.md.gov/preregistration" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/873+Long+Dr,+Aberdeen,+MD+21001/@39.5305211,-76.1890448,17z/data=!3m1!4b1!4m5!3m4!1s0x89c7c3d0f6e5d247:0xf432b28f0f6af418!8m2!3d39.5304543!4d-76.1877926" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://onestop.md.gov/preregistration" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #5: Martins-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseMartins">
<a class="card-title">
Martin's
</a>
</div>
<div id="collapseMartins" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Martin's is offering COVID-19 vaccinations at various locations throughout Maryland. To check the availability of appointments, visit <a href="https://martinssched.rxtouch.com/rbssched/program/covid19/Patient/Advisory" target="_blank" rel="noopener noreferrer"> this website</a>. Enter your ZIP code to find locations with available appointments within 30 miles.</p><br>
<p><strong>Phone:</strong> <a href="https://www.google.com/maps/search/martins+pharmacy/" target="_blank" rel="noopener noreferrer"><i class="fas fa-phone"></i> Call your local store </a></p>
<a class="btn btn-primary" href="https://martinssched.rxtouch.com/rbssched/program/covid19/Patient/Advisory" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/search/martins+pharmacy/" target="_blank" rel="noopener noreferrer" role="button">Find your local store</a>
<a class="btn btn-primary" href="https://martins-supermarkets.com/covid-19-vaccine" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #5: fairgrounds-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsefairgrounds">
<a class="card-title">
Maryland State Fairgrounds
</a>
</div>
<div id="collapsefairgrounds" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
The Maryland State Fairgrounds are serving as a COVID-19 mass vaccination location. In order to receive a vaccine appointment, first you must pre-register <a href="https://covidvax.maryland.gov/preregistration" target="_blank" rel="noopener noreferrer">here</a>. The state will contact you with directions on how to book an appointment, based on the availability of vaccines.
<p><br><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-6829</a></p>
<a class="btn btn-primary" href="https://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/2200+York+Rd,+Lutherville-Timonium,+MD+21093/@39.447056,-76.6322965,17z/data=!3m1!4b1!4m5!3m4!1s0x89c80e0f9d7e640d:0x7c85a3d3de2e67ef!8m2!3d39.4470519!4d-76.6301078" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #5: medstar-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseMedStar">
<a class="card-title">
MedStar Health
</a>
</div>
<div id="collapseMedStar" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Medstar is offering COVID-19 vaccines at several MedStar Health facilities across Maryland, including Franklin Square Medical Center, Good Samaritan Hospital, Harbor Hospital, Union Memorial Hospital and MedStar Health Bel Air Medical Campus. MedStar will also be rolling out <a href="https://www.medstarhealth.org/mhs/2021/02/01/medstar-health-becomes-first-in-region-to-take-covid-19-vaccines-to-the-community-with-mobile-clinic/" target="_blank" rel="noopener noreferrer"> mobile vaccine clinics</a> in partnership with the Baltimore City Health Department.
<p><br><strong>Phone:</strong> <a href="tel:8777726505"><i class="fas fa-phone"></i> 877-772-6505</a></p>
<a class="btn btn-primary" href="https://covidvaccine.medstarhealth.org/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/search/medstar+health/@38.7941052,-77.2425111,8z/data=!3m1!4b1" target="_blank" rel="noopener noreferrer" role="button">Find your local clinic</a>
<a class="btn btn-primary" href="https://www.medstarhealth.org/mhs/about-medstar/covid-19-vaccine-information/" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #5: montgomery-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsemontcoll">
<a class="card-title">
Montgomery College (Germantown Campus)
</a>
</div>
<div id="collapsemontcoll" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
The Germantown campus of Montgomery College is serving as a COVID-19 mass vaccination location. In order to receive a vaccine appointment, first you must pre-register <a href="https://covidvax.maryland.gov/preregistration" target="_blank" rel="noopener noreferrer">here</a>. The state will contact you with directions on how to book an appointment, based on the availability of vaccines.
<p><br><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-6829</a></p>
<a class="btn btn-primary" href="https://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/20200+Observation+Dr,+Germantown,+MD+20876/@39.1863104,-77.2487649,17z/data=!3m1!4b1!4m5!3m4!1s0x89b62c64cc991ba5:0x13a9f2d48926e7d0!8m2!3d39.1863063!4d-77.2465762" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #7: navy-marine-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsenavy">
<a class="card-title">
Navy-Marine Corps Memorial Stadium
</a>
</div>
<div id="collapsenavy" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
The Navy-Marine Corps Memorial Stadium is serving as a COVID-19 mass vaccination location.In order to receive a vaccine appointment, first you must pre-register <a href="http://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">here</a>. The state will contact you with directions on how to book an appointment, based on the availability of vaccines. </p><br>
<p><br><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-68291</a></p>
<a class="btn btn-primary" href="https://onestop.md.gov/preregistration" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/550+Taylor+Ave,+Annapolis,+MD+21401/@38.9856814,-76.5103243,17z/data=!3m1!4b1!4m5!3m4!1s0x89b7f6fe9c1d68a3:0xaf00149551132f36!8m2!3d38.9856773!4d-76.5081303" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://onestop.md.gov/preregistration" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #6: Rite Aid-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseRiteAid">
<a class="card-title">
Rite Aid
</a>
</div>
<div id="collapseRiteAid" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Rite Aid is offering COVID-19 vaccinations at various locations throughout Maryland. To schedule an appointment at a local pharmacy, visit the <a href="https://www.riteaid.com/pharmacy/apt-scheduler" target="_blank" rel="noopener noreferrer"> appointment scheduler</a>. You will be required to verify your eligibility by entering your age, occupation and preexisting medical conditions. If you qualify, you will be able to select a location and schedule an appointment if available.</p><br>
<p><strong>Phone:</strong> <a href="https://www.google.com/maps/search/rite+aid/" target="_blank" rel="noopener noreferrer" role="button"><i class="fas fa-phone"></i> Call your local store </a></p>
<a class="btn btn-primary" href=" https://www.riteaid.com/pharmacy/apt-scheduler" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/search/rite+aid/" target="_blank" rel="noopener noreferrer" role="button">Find your local store</a>
<a class="btn btn-primary" href="https://www.riteaid.com/pharmacy/services/vaccine-central" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #7: Safeway-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseSafeway">
<a class="card-title">
Safeway Pharmacy
</a>
</div>
<div id="collapseSafeway" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Safeway is offering COVID-19 vaccinations at various locations throughout Maryland. Visit <a href="https://www.mhealthappointments.com/covidappt" target="_blank" rel="noopener noreferrer"> this site</a> and enter your zip code and verify eligibility to see available appointments. </p><br>
<p><strong>Phone:</strong> <a href="https://www.google.com/maps/search/safeway+pharmacy/" target="_blank" rel="noopener noreferrer" role="button"><i class="fas fa-phone"></i> Call your local store </a></p>
<a class="btn btn-primary" href="https://www.mhealthappointments.com/covidappt" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/search/safeway+pharmacy/" target="_blank" rel="noopener noreferrer" role="button">Find your local store</a>
<a class="btn btn-primary" href="https://www.safeway.com/pharmacy/covid-19.html" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #7: columbia mall-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsemallc">
<a class="card-title">
The Mall in Columbia
</a>
</div>
<div id="collapsemallc" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
The Mall in Columbia is serving as a COVID-19 mass vaccination location. In order to receive a vaccine appointment, first you must pre-register <a href="https://covidvax.maryland.gov/preregistration" target="_blank" rel="noopener noreferrer">here </a>. The state will contact you with directions on how to book an appointment, based on the availability of vaccines.
</p><br>
<p><br><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-68291</a></p>
<a class="btn btn-primary" href="https://onestop.md.gov/preregistration" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/10300+Little+Patuxent+Pkwy,+Columbia,+MD+21044/@39.2157179,-76.86375,17z/data=!3m1!4b1!4m5!3m4!1s0x89b7df98158ce8c3:0xe9857b646f49af3d!8m2!3d39.2157138!4d-76.861556" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://onestop.md.gov/preregistration" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #5: Martins-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseVAMD">
<a class="card-title">
Veterans Affairs Maryland Health Care System
</a>
</div>
<div id="collapseVAMD" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Veterans Affairs in Maryland is currently offering the COVID-19 vaccine only to veterans 65 years and older already receiving care from the VA.
<p><br><strong>Phone:</strong> <a href="tel:8008652441"><i class="fas fa-phone"></i> 800-865-2441</a></p>
<a class="btn btn-primary" href="https://www.maryland.va.gov/services/covid-19-vaccines.asp" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item #8: Walgreens-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseWalgreens">
<a class="card-title">
Walgreens
</a>
</div>
<div id="collapseWalgreens" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Walgreens is offering COVID-19 vaccinations at various locations throughout Maryland. To check the availability of appointments, visit <a href="https://www.walgreens.com/findcare/vaccination/covid-19?ban=covid_vaccine_landing_schedule" target="_blank" rel="noopener noreferrer"> this website</a> and click on “Get Started” at the bottom of the page. You will need to create an account and go through a vaccination screening before you will be able to schedule an appointment.</p><br>
<p><strong>Phone:</strong> <a href="https://www.google.com/maps/search/walgreens+pharmacy/" target="_blank" rel="noopener noreferrer" role="button"><i class="fas fa-phone"></i> Call your local store </a></p>
<a class="btn btn-primary" href="https://www.walgreens.com/findcare/vaccination/covid-19?ban=covid_vaccine_landing_schedule" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/search/walgreens+pharmacy/" target="_blank" rel="noopener noreferrer" role="button">Find your local store</a>
<a class="btn btn-primary" href="https://www.walgreens.com/topic/promotion/covid-vaccine.jsp?ban=covid_vaccine_brandstory_tile_Jan2021" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Small accordion for vax sites item: wicomico civic center-->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsewicomico">
<a class="card-title">
Wicomico Civic Center
</a>
</div>
<div id="collapsewicomico" class="card-body collapse" data-parent="#smallaccordion" >
<p class="font-weight-light m-0">
Wicomico Civic Center is serving as a COVID-19 mass vaccination location. In order to receive a vaccine appointment, first you must pre-register at <a href="http://massvax.maryland.gov/preregistration" target="_blank" rel="noopener noreferrer" role="button">this</a> link. The state will contact you with directions on how to book an appointment, based on the availability of vaccines. Walk up appointments are available.<br>
<br><p><strong>Phone:</strong> <a href="tel:18556346829"><i class="fas fa-phone"></i> 1-855-634-6829</a></p>
<a class="btn btn-primary" href="https://massvax.maryland.gov/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/500+Glen+Ave,+Salisbury,+MD+21804/@38.3610093,-75.5780779,17z/data=!3m1!4b1!4m5!3m4!1s0x89b9039feb245c53:0x36555c48f131812c!8m2!3d38.3610093!4d-75.5758839" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
</div>
<hr>
</div>
<!-- SMALL ACCORDION FOR VAX SITES END -->
<!--<br><h4><strong>Mass vaccination appointments:</strong></h4>
<p><em>Check the availability of appointments at mass vaccination locations below, based on a recent scrape of appointment sites. This information is updated every 15 minutes.</em></p>-->
<!-- Start scrape section
<div id="header"></div>
<div class="well">
<div class="row" id="csv-display">
</div>
</div>
End scrape section -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- MARYLAND ACCORDION END -->
<div id="county-navbar">
<br><br><br/><h2> How to get vaccinated elsewhere in central Maryland: </h2>
<br/>
</div>
<!-- ACCORDION START -->
<div class="row">
<div class="col-lg-10 mx-auto">
<!-- Accordion -->
<div id="accordionCounties" class="accordion shadow">
<!-- Accordion item 1: Anne Arundel County -->
<div class="card">
<div id="headingAACounty" class="card-header bg-white shadow-sm border-0">
<h6 class="mb-0 font-weight-bold"><a data-toggle="collapse" data-target="#AACounty" aria-expanded="false" aria-controls="AACounty" class="d-block position-relative text-dark text-uppercase collapsible-link py-2">Anne Arundel County</a></h6>
</div>
<div id="AACounty" aria-labelledby="headingAACounty" data-parent="#accordionCounties" class="collapse">
<div class="card-body p-5">
<p class="font-weight-light m-0">
Anne Arundel County is currently giving vaccines to those that qualify for Phases 1A, 1B, 1C, 2A and 2B. To find out what priority group you’re in, visit this site. Eligible people can preregister by following the link here. As more vaccines become available and priority groups roll out, those who preregistered will receive an email with available locations and appointment times.</p>
<br><h4><strong>Where to get vaccinated:</strong><br> </h4>
<p><em>Click on a location for more info.</em></p>
<!-- SMALL ACCORDION FOR ANNE ARUNDEL SITES START -->
<div id="smallaccordion-aa" class="smallaccordion">
<!-- Smal accordion for anne arundel item #1: -->
<div id="aa1" class="card-header-small collapsed" data-toggle="collapse" href="#collapseaa1">
<a class="card-title">
Anne Arundel County Department of Health
</a>
</div>
<div id="collapseaa1" class="card-body collapse" data-parent="#smallaccordion-aa">
<p>The Anne Arundel County Department of Health is currently providing vaccines to those in Phases 1A, 1B, 1C, 2A and 2B. To preregister follow this <a href="https://aacounty.org/covidvax" target="_blank" rel="noopener noreferrer">link.</a>. Review the provided information and then check the button that says that “I have read and understand this information,” in order to access the form.</p>
<p><strong>Phone:</strong> <a href="tel:4102227256"><i class="fas fa-phone"></i> 410-222-7256</a></p>
<p><strong>Email: </strong> <a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer"><i class="fas fa-paper-plane"></i> [email protected]</a></p>
<a class="btn btn-primary" href="https://aacounty.org/covidvax" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/Anne+Arundel+County+Department+of+Health/@38.9810744,-76.5660482,17z/data=!4m13!1m7!3m6!1s0x89b7f13bcffe128d:0xce1aefa2138377da!2sJ.+HOWARD+BEARD+HEALTH+SERVICES+BUILDING,+3+Harry+S.+Truman+Pkwy,+Annapolis,+MD+21401!3b1!8m2!3d38.9810744!4d-76.5638595!3m4!1s0x89b7f13c5444366b:0x5d6f67ed1b3742e5!8m2!3d38.9810304!4d-76.5640855" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://aahealth.org/" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Smal accordion for anne arundel #2: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseaa2">
<a class="card-title">
Luminis Health
</a>
</div>
<div id="collapseaa2" class="card-body collapse" data-parent="#smallaccordion-aa" >
<p>Luminis Health is currently only vaccinating those in eligible phases and is giving priority to Prince George’s and Anne Arundel county residents. Complete the <a href="https://askaamc.formstack.com/forms/community_vaccination" target="_blank" rel="noopener noreferrer">interest form</a> to preregister and Luminis will contact individuals who have preregistered as appointments become available. Luminis Health will require identification for vaccination. Vaccines will be given by appointment only and walk in vaccinations will not be available.</p>
<p class="font-weight-light m-0"></p> <br>
<p><strong>Phone:</strong> <a href="tel:4434816852"><i class="fas fa-phone"></i> 443-481-6852</a><em> (Open Monday through Friday: 8:30 a.m. to 7 p.m. and Saturday through Sunday: 8:30 a.m. to 5 p.m.)</em></p>
<a class="btn btn-primary" href="https://askaamc.formstack.com/forms/community_vaccination" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/Luminis+Health+Community+Clinic+-+Arundel+Lodge/@39.0174139,-76.695679,10.73z/data=!4m5!3m4!1s0x89b7f7e2bf090581:0xb4bd2a0b7f7a9ff2!8m2!3d38.9667408!4d-76.5463847"target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://living.aahs.org/community-vaccine-clinics/" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Smal accordion for anne arundel item #3: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseaa3">
<a class="card-title">
University of Maryland Baltimore Washington Medical Center
</a>
</div>
<div id="collapseaa3" class="card-body collapse" data-parent="#smallaccordion-aa" >
<p>UMMS and affiliated hospitals are helping to vaccinate Marylanders at various locations throughout Maryland.They are currently vaccinating those included in Phases 1A, 1B, 1C, 2A and 2B. If you are eligible to be vaccinated, you can fill out <a href="https://www.vaccination-registration.com/umms/ummsall" target="_blank" rel="noopener noreferrer">this</a> form. Once an appointment is available, you will be contacted. You might receive a link from the domain “tav7.com,” a legitimate link from UMMS. When contacted, you will be able to schedule your appointment. Visit <a href="https://www.umms.org/bwmc/coronavirus/get-vaccine" target="_blank" rel="noopener noreferrer">this site</a> for more information.</p>
<p><strong>Phone:</strong> <a href="tel:4107874000"><i class="fas fa-phone"></i> 410-787-4000</a></p>
<!-- <a class="btn btn-primary" href="https://app.smartsheet.com/b/form/d1747b1fb8f1433a81b2ea00f93f0e94" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>-->
<a class="btn btn-primary" href="https://www.google.com/maps/place/UM+Baltimore+Washington+Medical+Center/@39.1378512,-76.6239747,17z/data=!3m1!4b1!4m5!3m4!1s0x89b7fcbcf975f5a1:0xc0ed7f2b37466d50!8m2!3d39.1378512!4d-76.621786" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://www.umms.org/bwmc/coronavirus/get-vaccine" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
</div>
<!-- SMALL ACCORDION FOR ANNE ARUNDEL END -->
</div>
</div>
</div>
<!-- Accordion item 2: Baltimore City -->
<div class="card">
<div id="headingBaltCity" class="card-header bg-white shadow-sm border-0">
<h6 class="mb-0 font-weight-bold"><a data-toggle="collapse" data-target="#BaltCity" aria-expanded="false" aria-controls="BaltCity" class="d-block position-relative collapsed text-dark text-uppercase collapsible-link py-2">Baltimore City</a></h6>
</div>
<div id="BaltCity" aria-labelledby="headingBaltCity" data-parent="#accordionCounties" class="collapse">
<div class="card-body p-5">
<p class="font-weight-light m-0">
Baltimore City is currently encouraging all residents 16 and older to pre-register for a vaccine appointment. Residents who previously filled out a vaccine interest form with the Baltimore City Health Department will need to re-register. The Baltimore City Health Department is still following prioritization guidelines. To find out what priority group you’re in, visit this site.
<br><br>The Baltimore City Health Department vaccine is free, and residents may receive the vaccine whether or not they have insurance. People in groups 1A and 1B who come to a vaccine appointment must bring supporting documentation such as work ID, licensure or proof of employment.</p>
<br><h4><strong>Where to get vaccinated:</strong><br> </h4>
<p><em>Click on a location for more info.</em></p>
<!-- SMALL ACCORDION FOR BALTIMORE CITY START -->
<div id="smallaccordion-baltcity" class="smallaccordion">
<!-- Smal accordion for BALTIMORE CITY item #1: -->
<div id="bc1" class="card-header-small collapsed" data-toggle="collapse" href="#collapsebc1">
<a class="card-title">
Baltimore City Health Department
</a>
</div>
<div id="collapsebc1" class="card-body collapse" data-parent="#smallaccordion-baltcity" >
<p> Appointments with the Baltimore City Health Department are currently available full. All residents should complete <a href="https://covax.baltimorecity.gov/" target="_blank" rel="noopener noreferrer">this registration form</a>. Individuals 65 years and older can call 410-396-CARE (2273) for assistance.</p>
<p><strong>Phone Number for 65+:</strong> <a href="tel:4103962273"><i class="fas fa-phone"></i> 410-396-2273</a></p>
<p><strong>Phone:</strong> <a href="tel:4439848650"><i class="fas fa-phone"></i> 443-984-8650</a> <em> (Monday through Friday 8:30 a.m. to 6:30 p.m. and Saturday 9 a.m. to 1 p.m.)</em></p>
<p><strong>Email: </strong> <a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer"><i class="fas fa-paper-plane"></i> [email protected]</a> <em></em></p>
<a class="btn btn-primary" href="https://covax.baltimorecity.gov/" target="_blank" rel="noopener noreferrer" role="button" role="button">Preregister</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/Life+Sciences+Building,+2901+Liberty+Heights+Ave,+Baltimore,+MD+21215/@39.3207741,-76.6641252,17z/data=!3m1!4b1!4m5!3m4!1s0x89c81b3db1e27b39:0x3cbd3de2106c0071!8m2!3d39.3207741!4d-76.6619365" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://coronavirus.baltimorecity.gov/covid-19-vaccine-information/covax-updates-baltimore-city-health-department" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
<!-- <a class="btn btn-primary" href="#" target="_blank" rel="noopener noreferrer" role="button" role="button">General appointment request[no link]</a> -->
</div>
<hr>
<!-- Smal accordion for BALTIMORE CITY item #3: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsebc3">
<a class="card-title">
Lifebridge
</a>
</div>
<div id="collapsebc3" class="card-body collapse" data-parent="#smallaccordion-baltcity" >
<p class="font-weight-light m-0">
Lifebridge Health is providing vaccinations at Grace Medical Center and Sinai Hospital of Baltimore. Fill out the appointment request form below to request a vaccine appointment at Lifebridge Health locations.</p><br>
<p><strong>Phone:</strong> <a href="tel:4106019355"><i class="fas fa-phone"></i> 410-601-9355</a></p>
<!-- <a class="btn btn-primary" href="#" role="button">there are several locations - Directions</a> -->
<a class="btn btn-primary" href="https://app.smartsheet.com/b/form/0631d72557054129988ec661b8cb4548" target="_blank" rel="noopener noreferrer" role="button" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.lifebridgehealth.org/Coronavirus/COVIDVaccine.aspx" target="_blank" rel="noopener noreferrer" role="button"> More Information</a>
</div>
<hr>
<!-- Smal accordion for BALTIMORE CITY item #4: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsebc4">
<a class="card-title">
Mercy Medical Center
</a>
</div>
<div id="collapsebc4" class="card-body collapse" data-parent="#smallaccordion-baltcity" >
<p class="font-weight-light m-0">
Mercy Primary Care patients will be contacted by Mercy Medical Center if they are eligible. Others may call the number below to ask about appointments. Appointments cannot be scheduled online.</p><br>
<p><strong>Phone:</strong> <a href="tel:4108013045"><i class="fas fa-phone"></i> 410-801-3045</a> <em> (Sunday through Saturday 11:00 a.m. to 8:30 p.m.)</em></p>
<a class="btn btn-primary" href="https://www.google.com/maps/place/Mercy+Medical+Center/@39.2935657,-76.6139271,18.63z/data=!4m13!1m7!3m6!1s0x89c8049967060d77:0xb062cb62faca3142!2s345+St+Paul+Pl,+Baltimore,+MD+21202!3b1!8m2!3d39.293785!4d-76.613337!3m4!1s0x89c81c461e25f175:0x3f6db94217d1ec3b!8m2!3d39.2942636!4d-76.6132725" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://mdmercy.com/news-and-events/updates-for-patients-and-visitors/vaccine-faqs?sc_lang=en" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Smal accordion for BALTIMORE CITY item #5: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsebc5">
<a class="card-title">
University of Maryland Medical Center
</a>
</div>
<div id="collapsebc5" class="card-body collapse" data-parent="#smallaccordion-baltcity" >
<p class="font-weight-light m-0">
UMMS and affiliated hospitals are helping to vaccinate Marylanders at various locations throughout Maryland. Fill out <a href="https://www.vaccination-registration.com/umms/ummsall" target="_blank" rel="noopener noreferrer">this request form</a> to request a vaccine appointment at UMMS locations. Visit <a href="https://www.umms.org/bwmc/coronavirus/get-vaccine" target="_blank" rel="noopener noreferrer">this site</a> for more information.</p><br>
<p><strong>Phone:</strong> <a href="tel:4103288667"><i class="fas fa-phone"></i> 410-328-8667</a></p>
<a class="btn btn-primary" href="https://www.vaccination-registration.com/umms/ummsall" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/University+of+Maryland+Medical+System/@39.286703,-76.6209698,17z/data=!3m1!4b1!4m5!3m4!1s0x89c80358b14665d5:0x5bf6823993379116!8m2!3d39.286703!4d-76.6187811" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://www.umms.org/bwmc/coronavirus/get-vaccine" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
<!-- <a class="btn btn-primary" href="#" role="button">Request appointment [appointments currently closed]</a> -->
</div>
<hr>
</div>
<!-- SMALL ACCORDION FOR BALTIMORE CITY END -->
</div>
</div>
</div>
<!-- Accordion item 3: Baltimore County -->
<div class="card">
<div id="headingBaltCounty" class="card-header bg-white shadow-sm border-0">
<h6 class="mb-0 font-weight-bold"><a data-toggle="collapse" data-target="#BaltCounty" aria-expanded="false" aria-controls="BaltCounty" class="d-block position-relative collapsed text-dark text-uppercase collapsible-link py-2">Baltimore County</a></h6>
</div>
<div id="BaltCounty" aria-labelledby="headingBaltCounty" data-parent="#accordionCounties" class="collapse">
<div class="card-body p-5">
<p class="font-weight-light m-0">
Baltimore County is currently giving vaccines to those that qualify for Phase 1A, 1B and 1C. To find out what priority group you’re in, visit <a href="https://covidlink.maryland.gov/content/vaccine/" target="_blank" rel="noopener noreferrer">this site.</a> To register for the vaccine from Baltimore County, complete <a href="https://survey123.arcgis.com/share/c268c6f40463480baae69154b7845ffd" target="_blank" rel="noopener noreferrer">this form</a> and wait to be contacted by county staff for instructions on how to make an appointment.</p>
<br>
<p> Please visit the <a href="https://coronavirusvaccineoutreach-bc-gis.hub.arcgis.com/#request-registration" target="_blank" rel="noopener noreferrer">Baltimore County COVID-19 Vaccine Hub</a> or email <a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer">[email protected]</a> for more information. Call <a href="tel:311">311</a> or the COVID-19 hotline at <a href="tel:4108873816">410-887-3816</a> for assistance requesting a vaccination appointment.</p>
<br><h4><strong>Where to get vaccinated:</strong><br> </h4>
<p><em>Click on a location for more info.</em></p>
<!-- SMALL ACCORDION FOR BALTIMORE COUNTY START -->
<div id="smallaccordion-baltco" class="smallaccordion">
<!-- Smal accordion for BALTIMORE COUNTY #2: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapseb2">
<a class="card-title">
Baltimore County Department of Health
</a>
</div>
<div id="collapseb2" class="card-body collapse" data-parent="#smallaccordion-baltco" >
<p class="font-weight-light m-0">
Complete <a href="https://survey123.arcgis.com/share/c268c6f40463480baae69154b7845ffd" target="_blank" rel="noopener noreferrer">this form</a> to be considered for eligibility. The county will contact eligible residents as appointments become available. Vaccines are being administered at the Maryland State Fairground in Timonium, Randallstown Community Center and other satellite locations. </p> <br>
<p><strong>Phone:</strong> <a href="tel:4108773816"><i class="fas fa-phone"></i> 410-877-3816</a></p>
<a class="btn btn-primary" href="https://survey123.arcgis.com/share/c268c6f40463480baae69154b7845ffd" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://coronavirusvaccineoutreach-bc-gis.hub.arcgis.com/#request-registration" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
</div>
<!-- SMALL ACCORDION FOR BALTIMORE COUNTY END -->
</div>
</div>
</div>
<!-- Accordion item 4: Montgomery County -->
<div class="card">
<div id="headingMontCounty" class="card-header bg-white shadow-sm border-0">
<h6 class="mb-0 font-weight-bold"><a data-toggle="collapse" data-target="#MontCounty" aria-expanded="false" aria-controls="MontCounty" class="d-block position-relative collapsed text-dark text-uppercase collapsible-link py-2">Montgomery County</a></h6>
</div>
<div id="MontCounty" aria-labelledby="headingMontCounty" data-parent="#accordionCounties" class="collapse">
<div class="card-body p-5">
<p class="font-weight-light m-0">
Montgomery County is currently giving vaccines to those that qualify for Phase 1 and Phase 2A and 2B. Individuals in Phase 2C and 3 are able to pre-register for appointments from Montgomery County <a href="https://www.montgomerycountymd.gov/covid19/vaccine/" target="_blank" rel="noopener noreferrer">here.</a> Patients will be contacted with a link to schedule appointments and available times, dates and clinics. For help filling out the online form, call 240-777-2982. To find out what priority group you’re in, visit <a href="https://covidlink.maryland.gov/content/vaccine/" target="_blank" rel="noopener noreferrer">this site.</a><br>
<br>Sign-up for text and email updates about vaccines from Montgomery County <a href="https://public.govdelivery.com/accounts/MDMONTGOMERY/signup/21366" target="_blank" rel="noopener noreferrer"> here.</a> To find out what to expect at your vaccination appointment, <a href="https://www.montgomerycountymd.gov/covid19/vaccine/appointment.html" target="_blank" rel="noopener noreferrer"> visit this site</a>. Click <a href="https://www.montgomerycountymd.gov/covid19/vaccine/faqs.html" target="_blank" rel="noopener noreferrer"> here</a> for frequently asked questions about vaccines from Montgomery County.<br> </p>
<br><p> The Germantown mass vaccination site will transition to a State-supported site on Thursday, April 8, 2021. The county is also offering a Ride On Vaccination Shuttle with free service between the Shady Grove Metro Station and Montgomery College - Germantown Campus. </p>
<br><h4><strong>Where to get vaccinated:</strong><br> </h4>
<p><em>Click on a location for more info.</em></p>
<!-- SMALL ACCORDION FOR MONTGOMERY COUNTY START -->
<div id="smallaccordion-moco" class="smallaccordion">
<hr>
<!-- Smal accordion for MONTGOMERY COUNTY #2: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsemc2">
<a class="card-title">
Montgomery County DHHS Clinics
</a>
</div>
<div id="collapsemc2" class="card-body collapse" data-parent="#smallaccordion-moco" >
<p class="font-weight-light m-0">
Montgomery County is operating vaccine clinics at several locations around the county, including in Rockville, Germantown and Silver Spring. All vaccinations are by appointment only and patients must preregister.</p> <br>
<p><strong>Phone:</strong> <a href="tel:2407770311"><i class="fas fa-phone"></i> 240-777-0311</a></p>
<a class="btn btn-primary" href="https://www.montgomerycountymd.gov/covid19/vaccine/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
</div>
<hr>
<!-- Smal accordion for MONTGOMERY COUNTY item #3: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsemc3">
<a class="card-title">
Adventist HealthCare
</a>
</div>
<div id="collapsemc3" class="card-body collapse" data-parent="#smallaccordion-moco" >
<p class="font-weight-light m-0">
Adventist HealthCare is operating several community vaccination clinics in Fort Washington, Rockville and Takoma Park. The clinics are open only to those who meet the state's Phase 1, 2A and 2B. Visit <a href="https://www.adventisthealthcare.com/coronavirus-covid-19/vaccine/" target="_blank" rel="noopener noreferrer">this website</a> to register and check availability. To receive alerts about COVID-19 vaccination opportunities at Adventist HealthCare, <a href="https://www.adventisthealthcare.com/coronavirus-covid-19/vaccine/alerts/" target="_blank" rel="noopener noreferrer">click here.</a></p><br>
<a class="btn btn-primary" href="https://www.adventisthealthcare.com/coronavirus-covid-19/vaccine/alerts/" target="_blank" rel="noopener noreferrer" role="button">Appointment alerts</a>
<a class="btn btn-primary" href="https://www.adventisthealthcare.com/coronavirus-covid-19/vaccine/" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Smal accordion for MONTGOMERY COUNTY item #4: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsemc4">
<a class="card-title">
Holy Cross Hospital
</a>
</div>
<div id="collapsemc4" class="card-body collapse" data-parent="#smallaccordion-moco" >
<p class="font-weight-light m-0">
Holy Cross Health is currently prioritizing Groups 1A, 1B and 1C only.</p><br>
<p><strong>Phone:</strong> <a href="tel:3017547000"><i class="fas fa-phone"></i> 301-754-7000</a></p>
<a class="btn btn-primary" href="https://www.holycrosshealth.org/health-and-wellness/covid-19-vaccine/schedule-appointment" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.google.com/maps/place/1400+Forest+Glen+Rd,+Silver+Spring,+MD+20910/@39.0148774,-77.0363535,17z/data=!3m1!4b1!4m5!3m4!1s0x89b7cf363b4339c7:0x7919c70db7799c43!8m2!3d39.0148774!4d-77.0341595" target="_blank" rel="noopener noreferrer" role="button">Directions</a>
<a class="btn btn-primary" href="https://www.holycrosshealth.org/health-and-wellness/covid-19-vaccine/" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr></div>
<!-- SMALL ACCORDION FOR MONTGOMERY COUNTY END -->
</div>
</div>
</div>
<!-- Accordion item 5: PG County -->
<div class="card">
<div id="headingPGCounty" class="card-header bg-white shadow-sm border-0">
<h6 class="mb-0 font-weight-bold"><a data-toggle="collapse" data-target="#PGCounty" aria-expanded="false" aria-controls="PGCounty" class="d-block position-relative collapsed text-dark text-uppercase collapsible-link py-2">Prince George's County</a></h6>
</div>
<div id="PGCounty" aria-labelledby="headingPGCounty" data-parent="#accordionCounties" class="collapse">
<div class="card-body p-5">
<p class="font-weight-light m-0">
Prince George’s County is currently giving vaccines to those that qualify for Phase Phase 2B who live or work in Prince George’s County. To find out what priority group you’re in, visit <a href="https://covidlink.maryland.gov/content/vaccine/" target="_blank" rel="noopener noreferrer">this site.</a><br>
<br>Vaccines are given by appointment only and everyone must preregister to be vaccinated. Visit <a href="https://covid19vaccination.princegeorgescountymd.gov/" target="_blank" rel="noopener noreferrer"> this link</a> to preregister. Preregistered individuals will receive an email from Prince George’s Health Department when appointments become available. COVID-19 vaccines are free for all residents who live and work in Prince George’s County regardless of insurance coverage or immigration status.</p>
<br><h4><strong>Where to get vaccinated:</strong><br> </h4>
<p><em>Click on a location for more info.</em></p>
<!-- SMALL ACCORDION FOR PRINCE GEORGE'S COUNTY START -->
<div id="smallaccordion-pg" class="smallaccordion">
<!-- Smal accordion for PRINCE GEORGE'S COUNTY item #1: -->
<div id="collapsemc1" class="card-header-small collapsed" data-toggle="collapse" href="#collapsepg1">
<a class="card-title">
Prince George's County Vaccine Clinics
</a>
</div>
<div id="collapsepg1" class="card-body collapse" data-parent="#smallaccordion-pg" >
<p> The Prince George's County Health Department operates four vaccination clinics, located at the Sports and Learning Complex in Landover, the Southern Regional Technology and Recreation Center in Fort Washington, the Cheverly Health Center in Cheverly and one in Laurel. <a href="https://covid19vaccination.princegeorgescountymd.gov/" target="_blank" rel="noopener noreferrer"> Preregister here</a> for an appointment.</p>
<a class="btn btn-primary" href="https://covid19vaccination.princegeorgescountymd.gov/" target="_blank" rel="noopener noreferrer" role="button">Request appointment</a>
<a class="btn btn-primary" href="https://www.princegeorgescountymd.gov/3730/COVID-19-Vaccination" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
<!-- Smal accordion for PRINCE GEORGE'S COUNTY item #2: -->
<div class="card-header-small collapsed" data-toggle="collapse" href="#collapsepg3">
<a class="card-title">
Adventist HealthCare
</a>
</div>
<div id="collapsepg3" class="card-body collapse" data-parent="#smallaccordion-pg" >
<p class="font-weight-light m-0">
Adventist HealthCare is operating several community vaccination clinics in Fort Washington, Rockville and Takoma Park. The clinics are open only to those who meet the state's Phase 1, 2A and 2B. Visit <a href="https://www.adventisthealthcare.com/coronavirus-covid-19/vaccine/" target="_blank" rel="noopener noreferrer">this website</a> to register and check availability. To receive alerts about COVID-19 vaccination opportunities at Adventist HealthCare, <a href="https://www.adventisthealthcare.com/coronavirus-covid-19/vaccine/alerts/" target="_blank" rel="noopener noreferrer">click here.</a></p><br>
<a class="btn btn-primary" href="https://www.adventisthealthcare.com/coronavirus-covid-19/vaccine/alerts/" target="_blank" rel="noopener noreferrer" role="button">Appointment alerts</a>
<a class="btn btn-primary" href="https://www.adventisthealthcare.com/coronavirus-covid-19/vaccine/" target="_blank" rel="noopener noreferrer" role="button">More Information</a>
</div>
<hr>
</div>
<!-- SMALL ACCORDION FOR PRINCE GEORGE'S COUNTY END -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- COUNTY ACCORDION END -->
<div id="faq-navbar">
<br><br><br/><h2> Frequently asked questions: </h2>