-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
54 lines (51 loc) · 2.33 KB
/
faq.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>FAQ</title>
<link rel="stylesheet" href="/styles/faq.css">
</head>
<body>
<header>
<div class="navbar">
<div class="brand">FAQ</div>
<div class="navitems">
<a href="index.angular.html">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</div>
</header>
<main>
<div class="faq">
<h2>Frequently Asked Questions</h2>
<div class="question">
<h3>Is online therapy as effective as in-person therapy?</h3>
<p>Yes, online therapy can be just as effective as in-person therapy. Numerous studies have shown that online therapy is an excellent option for individuals seeking mental health support.</p>
</div>
<div class="question">
<h3>How do I book a therapy session?</h3>
<p>To book a therapy session, simply click on the 'Book Now' button on our website or contact our support team. We will guide you through the process and help you find the right therapist for your needs.</p>
</div>
<div class="question">
<h3>Is my personal information kept confidential?</h3>
<p>Yes, we prioritize your privacy and confidentiality. All personal information shared with our therapists is kept strictly confidential in accordance with ethical and legal guidelines.</p>
</div>
<div class="question">
<h3>How long is each therapy session?</h3>
<p>Each therapy session typically lasts around 50 minutes. However, the exact duration may vary depending on your therapist and the treatment plan.</p>
</div>
<div class="question">
<h3>What if I'm not satisfied with my therapy experience?</h3>
<p>Your satisfaction is important to us. If you're not satisfied with your therapy experience, please contact our support team, and we will work with you to address any concerns and find a suitable solution.</p>
</div>
</div>
</main>
<footer>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
</ul>
</footer>
</body>
</html>