-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.html
80 lines (78 loc) · 3.75 KB
/
support.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support</title>
<link rel="stylesheet" href="support.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<a href="dashboard.html" id="home">Home</a>
<a href="plan.html" id="plans">Plans</a>
<a href="support.html" id="support">Support</a>
<a href="mysubscription.html" id="subscriptions">My Subscriptions</a>
</nav>
<h2>FAQs About Subscription Management</h2>
<section class="support">
<div class="faq-container">
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(0)">
<span class="faq-icon" id="icon-0">+</span>
<h3>What is your refund policy?</h3>
</div>
<div class="faq-answer" id="answer-0">
<p>Our refund policy allows you to request a refund within 30 days of purchase if you are not satisfied with our services.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(1)">
<span class="faq-icon" id="icon-1">+</span>
<h3>How can I update my billing information?</h3>
</div>
<div class="faq-answer" id="answer-1">
<p>You can update your billing information through your account settings page. Simply log in and navigate to the billing section.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(2)">
<span class="faq-icon" id="icon-2">+</span>
<h3>How do I contact customer support?</h3>
</div>
<div class="faq-answer" id="answer-2">
<p>You can contact our customer support team via email at [email protected] or use the live chat feature on our website.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(3)">
<span class="faq-icon" id="icon-3">+</span>
<h3>How can I view and compare different subscription plans?</h3>
</div>
<div class="faq-answer" id="answer-3">
<p>You can view and compare all available subscription plans on the "Plans" page. Each plan lists its features and pricing to help you make an informed decision.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(4)">
<span class="faq-icon" id="icon-4">+</span>
<h3>How do I cancel my subscription?</h3>
</div>
<div class="faq-answer" id="answer-4">
<p> To cancel your subscription, log into your account, navigate to the subscription section, and click "Cancel Subscription."</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleAnswer(5)">
<span class="faq-icon" id="icon-5">+</span>
<h3>Can I change my subscription plan after signing up? </h3>
</div>
<div class="faq-answer" id="answer-5">
<p>Yes, you can upgrade or downgrade your subscription plan at any time by visiting the account management section and selecting a different plan.</p>
</div>
</div>
</div>
</section>
<script src="support.js"></script>
</body>
</html>