7
7
< title > SkillWise FAQ</ title >
8
8
< link rel ="shortcut icon " href ="./favicon.svg " type ="image/svg+xml ">
9
9
10
- <!--
11
- - custom font link
12
- -->
10
+ <!-- Custom font link -->
13
11
< link rel ="stylesheet " href ="./assets/font/font.css ">
14
12
15
- <!--
16
- - custom css link
17
- -->
13
+ <!-- Custom CSS link -->
18
14
< link rel ="stylesheet " href ="./assets/css/style.css ">
19
15
< link rel ="stylesheet " href ="./assets/css/Faq.css ">
20
16
21
-
22
- <!--
23
- - preload images
24
- -->
17
+ <!-- Preload images -->
25
18
< link rel ="preload " as ="image " href ="./assets/images/faq.png ">
26
19
< link rel ="preload " as ="image " href ="./assets/images/hero-bg.png ">
27
20
28
21
<!-- Animation on Scroll -->
29
22
< link href ="
https://unpkg.com/[email protected] /dist/aos.css "
rel ="
stylesheet "
>
30
23
24
+ < style >
25
+ /* Styling for the "Was this helpful?" buttons */
26
+ .helpful-buttons {
27
+ margin-top : 10px ;
28
+ display : flex;
29
+ align-items : center;
30
+ gap : 10px ;
31
+ }
32
+
33
+ .helpful-btn {
34
+ padding : 5px 10px ;
35
+ border : none;
36
+ background-color : # a1a0a0 ;
37
+ cursor : pointer;
38
+ border-radius : 4px ;
39
+ transition : background-color 0.3s ease;
40
+ }
41
+
42
+ .helpful-btn : hover {
43
+ background-color : # bfbcbc ;
44
+ }
45
+
46
+ .helpful-result {
47
+ margin-left : 10px ;
48
+ font-weight : bold;
49
+ }
50
+ </ style >
31
51
</ head >
32
52
33
53
< body style ="background-image: url('./assets/images/hero-bg.png'); ">
34
54
<!-- Navbar -->
35
55
< header class ="header " data-header >
36
56
< div class ="container ">
37
-
38
57
< a href ="./index.html ">
39
58
< img src ="./assets/images/Skillwise_logo.jpg " width ="50 " height ="10 " alt ="SkillWise home ">
40
59
</ a >
41
60
42
61
< nav class ="navbar " data-navbar >
43
-
44
62
< div class ="navbar-top ">
45
63
< a >
46
64
< img src ="./assets/images/Skillwise_logo.jpg " width ="50 " height ="10 " alt ="SkillWise home ">
47
65
</ a >
48
-
49
66
< button class ="nav-close-btn " aria-label ="close menu " data-nav-toggler >
50
67
< ion-icon name ="close-outline " aria-hidden ="true "> </ ion-icon >
51
68
</ button >
52
69
</ div >
53
70
54
71
< ul class ="navbar-list ">
55
-
56
72
< li class ="navbar-item ">
57
73
< a href ="./index.html " class ="navbar-link title-sm " data-nav-link > Home</ a >
58
74
</ li >
59
-
60
75
< li class ="navbar-item ">
61
76
< a href ="./index.html#courses " class ="navbar-link title-sm " data-nav-link > Courses</ a >
62
77
</ li >
63
-
64
78
< li class ="navbar-item ">
65
79
< a href ="./index.html#blog " class ="navbar-link title-sm " data-nav-link > Blog</ a >
66
80
</ li >
67
-
68
81
< li class ="navbar-item ">
69
82
< a href ="./index.html#contact " class ="navbar-link title-sm " data-nav-link > Contacts</ a >
70
83
</ li >
71
-
72
84
< li class ="navbar-item ">
73
85
< a href ="Faq.html " class ="navbar-link title-sm " data-nav-link > FAQ</ a >
74
86
</ li >
75
-
76
87
</ ul >
77
-
78
88
</ nav >
79
89
80
90
< a href ="./signin.html " class ="btn btn-secondary "> Start Free Trial</ a >
84
94
</ button >
85
95
86
96
< div class ="overlay " data-overlay data-nav-toggler > </ div >
87
-
88
97
</ div >
89
98
</ header >
90
- < section class =" section hero has-bg-image " aria-labelledby =" hero-label "
91
- style ="display: flex; justify-content: center; align-items: center; height: 100vh; ">
99
+
100
+ < section class =" section hero has-bg-image " aria-labelledby =" hero-label " style ="display: flex; justify-content: center; align-items: center; height: 100vh; ">
92
101
< div class ="container " style ="margin: 10rem auto 0; width:80% ">
93
102
< div class ="hero-content " style ="max-width: 600px; ">
94
-
95
103
< h1 class ="headline-lg " id ="hero-label " data-aos ="zoom-in ">
96
104
Frequently < span class ="span "> Asked</ span > Questions
97
105
</ h1 >
98
-
99
106
< p class ="title-md has-before " data-aos ="fade-right ">
100
107
At SkillWise, we are dedicated to providing a seamless learning experience for all our users.
101
108
Whether you're curious about our course offerings, payment options, or certification details, you’ll
102
109
find the answers to your most common questions here. We aim to make your journey with us as smooth
103
110
and enjoyable as possible, empowering you to achieve your learning goals.
104
111
</ p >
105
-
106
112
</ div >
113
+
107
114
< figure class ="hero-banner " data-aos ="zoom-out-up ">
108
115
< img src ="./assets/images/faq.png " width ="590 " height ="620 " alt ="hero banner " class ="w-100 ">
109
116
</ figure >
110
-
111
117
</ div >
112
118
</ section >
113
119
@@ -128,7 +134,15 @@ <h1 data-aos="zoom-in">
128
134
Design, Modern Physics, Music Production, Finances, and more. All courses are designed by
129
135
experts and provide practical knowledge for learners of all levels.</ p >
130
136
</ div >
137
+
138
+ < div class ="helpful-buttons ">
139
+ < p > Was this helpful?</ p >
140
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'yes') "> Yes</ button >
141
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'no') "> No</ button >
142
+ < p class ="helpful-result "> </ p >
143
+ </ div >
131
144
</ div >
145
+
132
146
< div class ="item " data-aos ="fade-down ">
133
147
< div class ="FAQ-title ">
134
148
< p class ="faqQuestion "> 2. What payment methods are accepted?</ p >
@@ -138,6 +152,13 @@ <h1 data-aos="zoom-in">
138
152
< p > We accept a variety of payment methods including credit/debit cards, PayPal, and other online
139
153
payment gateways. For more details, please refer to our Payment Method section.</ p >
140
154
</ div >
155
+
156
+ < div class ="helpful-buttons ">
157
+ < p > Was this helpful?</ p >
158
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'yes') "> Yes</ button >
159
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'no') "> No</ button >
160
+ < p class ="helpful-result "> </ p >
161
+ </ div >
141
162
</ div >
142
163
143
164
< div class ="item " data-aos ="fade-down ">
@@ -149,6 +170,13 @@ <h1 data-aos="zoom-in">
149
170
< p > Yes! All courses provide a certificate of completion that can be downloaded and added to your
150
171
resume or LinkedIn profile.</ p >
151
172
</ div >
173
+
174
+ < div class ="helpful-buttons ">
175
+ < p > Was this helpful?</ p >
176
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'yes') "> Yes</ button >
177
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'no') "> No</ button >
178
+ < p class ="helpful-result "> </ p >
179
+ </ div >
152
180
</ div >
153
181
154
182
< div class ="item " data-aos ="fade-down ">
@@ -161,42 +189,82 @@ <h1 data-aos="zoom-in">
161
189
browser or checking your internet connection. You can also reach out to our support team for
162
190
further assistance.</ p >
163
191
</ div >
192
+
193
+ < div class ="helpful-buttons ">
194
+ < p > Was this helpful?</ p >
195
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'yes') "> Yes</ button >
196
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'no') "> No</ button >
197
+ < p class ="helpful-result "> </ p >
198
+ </ div >
164
199
</ div >
165
200
166
201
< div class ="item " data-aos ="fade-down ">
167
202
< div class ="FAQ-title ">
168
- < p class ="faqQuestion "> 5. How long do I have access to a course after purchasing it ?</ p >
203
+ < p class ="faqQuestion "> 5. Can I get a refund if I'm not satisfied with a course ?</ p >
169
204
< span class ="expandToggle "> < p class ="expand "> +</ p > < p class ="revert "> -</ p > </ span >
170
205
</ div >
171
206
< div class ="FAQ-content ">
172
- < p > Once you purchase a course, you get lifetime access, allowing you to learn at your own pace.</ p >
207
+ < p > Yes, we have a refund policy in place. Please refer to our Refund Policy section for more details
208
+ on how to request a refund.</ p >
209
+ </ div >
210
+
211
+ < div class ="helpful-buttons ">
212
+ < p > Was this helpful?</ p >
213
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'yes') "> Yes</ button >
214
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'no') "> No</ button >
215
+ < p class ="helpful-result "> </ p >
173
216
</ div >
174
217
</ div >
175
218
176
219
< div class ="item " data-aos ="fade-down ">
177
220
< div class ="FAQ-title ">
178
- < p class ="faqQuestion "> 6. Do I need any prerequisites to enroll in a course?</ p >
221
+ < p class ="faqQuestion "> 6. How long do I have access to a course after purchasing it ?</ p >
179
222
< span class ="expandToggle "> < p class ="expand "> +</ p > < p class ="revert "> -</ p > </ span >
180
223
</ div >
181
224
< div class ="FAQ-content ">
182
- < p > Most beginner courses do not require any prerequisites, but intermediate and advanced courses
183
- might need some prior knowledge. You can find any required prerequisites mentioned in the course
184
- description.</ p >
225
+ < p > Once you purchase a course, you get lifetime access, allowing you to learn at your own pace.</ p >
226
+ </ div >
227
+
228
+ < div class ="helpful-buttons ">
229
+ < p > Was this helpful?</ p >
230
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'yes') "> Yes</ button >
231
+ < button class ="helpful-btn " onclick ="handleHelpful(this, 'no') "> No</ button >
232
+ < p class ="helpful-result "> </ p >
185
233
</ div >
186
234
</ div >
187
235
236
+
188
237
< div class ="FAQ-ShowMore ">
189
238
< button id ="showMoreBtn "> Show More</ button >
190
239
</ div >
191
-
192
240
</ div >
193
241
</ div >
194
- <!-- Animation on Scroll -->
242
+
195
243
< script src ="https://unpkg.com/aos@next/dist/aos.js "> </ script >
196
244
< script >
197
245
AOS . init ( ) ;
198
246
</ script >
199
- < script src ="./assets/js/scriptfaq.js "> </ script >
247
+
248
+ < script >
249
+ function handleHelpful ( button , response ) {
250
+ const resultText = button . parentElement . querySelector ( ".helpful-result" ) ;
251
+
252
+ // Disable the buttons after one selection
253
+ const buttons = button . parentElement . querySelectorAll ( "button" ) ;
254
+ buttons . forEach ( btn => {
255
+ btn . disabled = true ;
256
+ } ) ;
257
+
258
+ // Display feedback based on the user's choice
259
+ if ( response === "yes" ) {
260
+ resultText . textContent = "Thank you for your feedback!" ;
261
+ resultText . style . color = "black" ;
262
+ } else {
263
+ resultText . textContent = "We're sorry to hear that. We'll work on improving!" ;
264
+ resultText . style . color = "black" ;
265
+ }
266
+ }
267
+ </ script >
200
268
</ body >
201
269
202
- </ html >
270
+ </ html >
0 commit comments