-
Notifications
You must be signed in to change notification settings - Fork 0
/
FAQ.html
92 lines (73 loc) · 2.46 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - BitWise Learning</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
header {
background-color: #00b4d8;
color: white;
text-align: center;
padding: 15px 0;
}
h1 {
margin: 0;
}
.faq-container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq-item {
margin-bottom: 20px;
}
.question {
font-weight: bold;
}
.answer {
margin-top: 5px;
}
</style>
</head>
<body>
<header>
<h1>FAQ - BitWise Learning</h1>
</header>
<div class="faq-container">
<div class="faq-item">
<div class="question">Q: What services do you offer?</div>
<div class="answer">A: We offer a range of services, including programming courses, web development, and technology consulting.</div>
</div>
<div class="faq-item">
<div class="question">Q: How can I sign up for a course?</div>
<div class="answer">A: To sign up for a course, visit our website's Courses section and follow the registration instructions for the desired course.</div>
</div>
<div class="faq-item">
<div class="question">Q: Is there a refund policy?</div>
<div class="answer">A: Yes, we have a refund policy. Please review our Refund Policy page for detailed information on the refund process.</div>
</div>
<div class="faq-item">
<div class="question">Q: Can I access course materials after completion?</div>
<div class="answer">A: Yes, you will have access to course materials even after completion, allowing you to review content at your own pace.</div>
</div>
<div class="faq-item">
<div class="question">Q: Are there any prerequisites for your courses?</div>
<div class="answer">A: Prerequisites vary by course. Check the course description for specific requirements before enrolling.</div>
</div>
<div class="faq-item">
<div class="question">Q: How do I contact support?</div>
<div class="answer">A: You can reach our support team by visiting the Contact Us page or sending an email to [email protected].</div>
</div>
<!-- Add more FAQ items as needed -->
</div>
</body>
</html>