-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.html
98 lines (86 loc) · 5.45 KB
/
schedule.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Schedule Therapy Today</title>
<link href="css/styles.css" type="text/css" rel="stylesheet">
</head>
<body class="schedule" id="wrapper">
<header>
<h1>Therapy With Diana</h1>
<nav id="primary">
<ul>
<li><a href="index.html" title="Home">Home</a></li>
<li><a href="about.html" title="About">About </a></li>
<li><a href="contact.html" title="Contact">Contact</a></li>
<li><a href="" title="Schedule">Scheduling</a></li>
</ul>
</nav><!--End primary-->
</header>
<main id="row">
<h2 class="no-underline">Start Therapy Today</h2>
<Once>I screen all of my clients by phone before scheduling an appointment to make sure I am a good fit for your needs. Please go to the <a href="contact.html">contact page to request a consultation</a>. Once we have completed the consultation, I will send you a link to my Alma patient portal where you can schedule your first appointment. I look forward to working with you.</p>
<section id="pricing">
<p class="pricing-text">First 90 minute Individual Session: $150</p>
<p class="pricing-text">Individual 60 minute Sessions Flat-Rate: $150</p>
<div class="row">
<div class="col3">
<h3>Intake</h3>
<p>During our first 90 minute session together, I will ask you about current concerns, as well as, past medical and psychiatric history. An assessment allows us to efficiently and effectively evaluate current symptoms so that we may identify a treatment plan to best meet your needs.</p>
</div><!--End Col3-->
<div class="col3">
<h3>Psychotherapy</h3>
<p>I am well known for providing this service and have quite a number of clients who wouldn’t trust anyone else to do this for them. No matter what I do for you, I’m committed to delivering satisfactory results in a timely and professional manner.</p>
</div><!--End Col3-->
<div class="col3 billing">
<h3>Billing</h3>
<p>Fees are paid day of service using a credit or debit card. HSA Cards are accepted. All billing is handled through my <a href="https://secure.helloalma.com/providers/diana-miller/">Alma patient portal</a>. Accepted insurance plans include: </p>
<nav id="secondary">
<ul>
<li><a href="https://www.aetna.com/">Aetna</a></li>
<li><a href="https://www.uhc.com/">United Healthcare</a></li>
<li><a href="https://www.cigna.com/">Cigna Healthcare</a></li>
</ul>
</nav>
</div><!--End Col3-->
</div><!--End Row-->
</section> <!-- End Pricing -->
<aside class="row">
<img class="left" src="images/emergency.png" alt="office">
<div class="left-text">
<h3>Mental Health Emergencies</h3>
<p>A mental health crisis is any situation in which a person's actions, feelings, and behaviors can lead to them hurting themselves or others, and/or put them at risk of being unable to care for themselves or function in the community in a healthy manner. If you are experiencing an emergency call the mental health crisis hotline at <a href="tel:1-800-273-8255" title="emergency phone number">1-800-273-8255</a>, <a href="tel:988" title="emergency phone number 2">988</a> or go to your nearest emergency department.</p>
</div><!--End text-->
</aside><!--End Row-->
</main>
<footer>
<section class="inner">
<h2>Connect with Diana</h2>
<nav class="contactme">
<div role="button" class="col4">
<a href="https://www.facebook.com/therapywithdiana" title="facebook"><img src="images/facebook.png" alt="facebook"></a>
</div><!--End Thirds-->
<div role="button" class="col4">
<a href="contact.html" title="contact"><img src="images/message.png" alt="message"></a>
<!--message by Muhammad Tajudin from the Noun Project-->
</div><!--End Thirds-->
<div role="button" class="col4">
<a href="https://www.psychologytoday.com/us/therapists/diana-miller-gig-harbor-wa/790082" title="psychology today"><img src="images/psytoday.png" alt="psychology today"></a>
</div><!--End Thirds-->
<div role="button" class="col4">
<a href="https://secure.helloalma.com/providers/diana-miller/" title="alma portal"><img src="images/Hello_Alma.png" alt="psychology today"></a>
</div><!--End Thirds-->
</nav><!--End ContactMe-->
</section><!--End Inner-->
<nav id="secondary">
<ul>
<li>Copyright © Therapy With Diana 2020</li>
<li>All Rights Reserved</li>
<li><a href="https://andrewpking.github.io/" title="Web Design by Drew">Web Design By Drew</a></li>
<li><a href="https://validator.w3.org/check?uri=referer" title="valid">Valid</a></li>
</ul>
</nav><!--End secondary-->
</footer>
</body>
</html>