-
Notifications
You must be signed in to change notification settings - Fork 0
/
insurance.html
97 lines (92 loc) · 3.02 KB
/
insurance.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- CSS -->
<link rel="stylesheet" href="dist/styles.css" />
<title>Insurance & Payment</title>
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico" />
<meta
name="description"
content="We accept Aetna, Blue Cross, Carefirst, Cigna, Amerigroup, Medicaid, United Healthcare, Medstar, and more!"
/>
</head>
<body>
<!-- Header Nav Template -->
<main-header></main-header>
<!-- Hero -->
<section>
<div class="hero">
<img
src="./assets/images/insurance-payment-hero.jpeg"
alt="An image of a small pink piggy bank"
/>
<h1>Insurance & Payment</h1>
</div>
</section>
<!-- End Hero -->
<!-- Main Content -->
<section class="page-container">
<h1>The Best Care At The Best Cost</h1>
<p>
Honeygo Pediatrics, LLC is dedicated to providing you with the highest
quality, cost effective medical care. We accept all major credit cards
and offer payment installments.
</p>
</section>
<!-- List of insurances -->
<section class="insurance gradient-gray page-container">
<h1>Participating Insurance:</h1>
<p>We accept nearly all major insurance plans including:</p>
<ul>
<li>Priority Partners</li>
<li>Medstar Family Choice</li>
<li>Wellpoint (Formerly Amerigroup)</li>
<li>United Healthcare</li>
<li>Aetna Better Health</li>
<li>Carefirst Community Health Plan of Maryland</li>
<li>Aetna</li>
<li>Blue Cross / Blue Shield</li>
<li>United HealthCare</li>
<li>Cigna</li>
<li>JHH Insurance: Employer Health Programs (EHP)</li>
<li>Kaiser</li>
<li>Tricare East</li>
<li>UMR</li>
<li>Medstar Select</li>
<li>Bind</li>
<li>Meritain</li>
</ul>
</section>
<section class="page-container">
<h1>Additional Fees:</h1>
<p>
There is an additional fee for completion of forms for use outside of
the patient's medical record, including:
</p>
<ul>
<li>Day Care</li>
<li>School</li>
</ul>
<p>
For the most up-to-date information on our accepted private health
insurance plans, please call our office at
<a class="in-text-link" href="tel:4109338101">410-933-8101</a>
</p>
</section>
<!-- End Main Content -->
<!-- Footer Template -->
<main-footer></main-footer>
<!-- JS -->
<script type="text/javascript" src="dist/bundle.js"></script>
</body>
</html>