forked from hngi/StartNg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelp.html
executable file
·436 lines (397 loc) · 20.8 KB
/
help.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0-11/css/all.min.css">
<title>StartNg</title>
<style type="text/css">
/* Style for Navbar Starts */
:root {
--primary-color: #3A0842;
--secondary-color: #44CF6C;
--default-color: #7f7979;
--dark-color: #2A2B2A;
--light-color: #D3D5D4;
}
.navbar-custom li a {
color: #000;
}
.custom-toggler .navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.custom-toggler.navbar-toggler {
border-color: #000;
}
/* Style for Navbar Ends */
/* Background style starts */
.bg-primary {
background-color: var(--primary-color) !important;
}
.bg-secondary {
background-color: var(--secondary-color) !important;
}
/* Background style starts */
/* Text styles starts */
.text-primary {
color: var(--primary-color) !important;
}
.text-secondary {
color: var(--secondary-color) !important;
}
/* Text styles ends */
/* Button styles starts */
.btn-primary {
background-color: var(--primary-color);
color: #fff;
border: thin solid var(--primary-color);
transition: 0.25s;
}
.btn-primary:hover {
background-color: var(--primary-color);
opacity: 0.85;
}
.btn-secondary {
background-color: var(--secondary-color);
color: #fff;
border: thin solid var(--secondary-color);
transition: 0.25s;
}
.btn-secondary:hover {
background-color: var(--secondary-color);
opacity: 0.85;
}
/* Button styles end */
/* collapsible accordion starts */
.myaccordion {
box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
margin: 0 auto;
max-width: 750px;
}
.myaccordion .card,
.myaccordion .card:last-child .card-header {
border: none;
}
.myaccordion .card-header {
border-bottom-color: #EDEFF0;
background: transparent;
}
.myaccordion .fa-stack {
font-size: 14px;
}
.myaccordion .btn {
width: 100%;
font-weight: bold;
color: var(--primary-color);
padding: 0;
}
.myaccordion .btn-link:hover,
.myaccordion .btn-link:focus {
text-decoration: none;
}
.myaccordion li+li {
margin-top: 10px;
}
/* collapsible accordion ends */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Nunito', sans-serif;
}
a {
text-decoration: none;
}
/*main tag style starts here */
.jumbotron {
background-color: #2A2B2A;
}
/* Style for Footer Starts */
.deep {
background: var(--primary-color);
color: #fff;
}
.deep #slink {
background: #44CF6C;
border-radius: 10px;
color: white;
padding: 10px 70px;
}
.deep li a {
text-decoration: none;
color: #fff;
font-size: 16px;
line-height: 30px;
}
.deep li {
list-style: none;
}
.deep li a:hover {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
.icons i {
font-size: 26px;
height: 50px;
width: 50px;
padding: 10px 20px;
color: white;
}
.icons i.fa.fa-twitter:hover {
color: #00aced;
}
.icons i.fa.fa-facebook:hover {
color: #3b5598;
}
.icons i.fa.fa-instagram:hover {
color: #ed3833;
}
/* Style for Footer Ends */
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-custom bg-custom">
<div class="container">
<a href="index.html" class="navbar-brand"><img src="https://res.cloudinary.com/sgnolebagabriel/image/upload/v1570873250/startng/Logo_1_ib5bjh.png" class="img-fluid" alt="logo" width="150px"></a>
<button class="navbar-toggler float-right custom-toggler" type="button" data-toggle="collapse" data-target="#navbar9" style="color: #000;">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbar9">
<ul class="navbar-nav ml-auto">
<li class="nav-item mr-5">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item mr-5">
<a class="nav-link" href="courses.html">Courses</a>
</li>
<li class="nav-item mr-5">
<a class="nav-link" href="hireGrad.html">Hire A Grad</a>
</li>
<li class="nav-item mr-5">
<a class="nav-link" href="contactus.html">Contact Us</a>
</li>
<li class="nav-item mr-5">
<a class="btn btn-secondary nav-link px-5" href="register.html" style="color: #fff;">Start Learning</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<!-- -->
<section class="jumbotron rounded-0 py-4 mb-0">
<div class="container">
<div class="row">
<div class="offset-md-2 col-md-8">
<div class="text-center text-white py-5">
<h2 class="jumbotron-heading ">How can we help you?</h2>
<form class="my-4">
<div class="input-group mt-3">
<input type="text" name="Search" class="form-control pt-2 pb-2 rounded-0" placeholder="Search" required aria-label="Search question" aria-describedby="button-addon2" style="border: thin solid #fff;">
<div class="input-group-append">
<button class="btn btn-light rounded-0" type="button" id="button-addon2"><i
class="fas fa-search"></i> Search</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- -->
<section class="bg-white py-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="text-center">
<h3 class="">FAQ</h3>
<p class="lead">Here are some of the most frequently asked questions on StartNG</p>
</div>
</div>
<div class="col-md-12 text-black">
<div class="container">
<div id="accordion" class="myaccordion">
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="d-flex align-items-center justify-content-between btn btn-link collapsed" data-toggle="collapse" data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
Do you offer certification or degrees?
<span class="fa-stack fa-sm">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-angle-down fa-stack-1x fa-inverse"></i>
</span>
</button>
</h2>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
<p class="text-muted">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing .
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h2 class="mb-0">
<button class="d-flex align-items-center justify-content-between btn btn-link collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Do you offer student discount?
<span class="fa-stack fa-2x">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-angle-down fa-stack-1x fa-inverse"></i>
</span>
</button>
</h2>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="card-body">
<p class="text-muted">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing .
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h2 class="mb-0">
<button class="d-flex align-items-center justify-content-between btn btn-link collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Are there free courses?
<span class="fa-stack fa-2x">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-angle-down fa-stack-1x fa-inverse"></i>
</span>
</button>
</h2>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="card-body">
<p class="text-muted">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing .
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFour">
<h2 class="mb-0">
<button class="d-flex align-items-center justify-content-between btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Do you offer student discount?
<span class="fa-stack fa-2x">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-angle-down fa-stack-1x fa-inverse"></i>
</span>
</button>
</h2>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
<div class="card-body">
<p class="text-muted">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing .
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFive">
<h2 class="mb-0">
<button class="d-flex align-items-center justify-content-between btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
Are there free courses?
<span class="fa-stack fa-2x">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-angle-down fa-stack-1x fa-inverse"></i>
</span>
</button>
</h2>
</div>
<div id="collapseFive" class="collapse" aria-labelledby="headingFive" data-parent="#accordion">
<div class="card-body">
<p class="text-muted">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing .
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-secondary py-5">
<div class="container">
<div class="text-center my-4">
<h4 class="text-dark font-weight-bold">Didn’t find an answer to your question?</h4>
<p class="">Write us a message and describe your problem!</p>
<a href="contactus.html" class="btn btn-primary px-5">Contact</a>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="mt-0">
<div class="container-fluid text-white deep">
<div class="container">
<div class="row">
<div class="col-md-12 mt-3 mb-4">
<img src="https://res.cloudinary.com/juwon-tech/image/upload/v1570818437/Logo_1_oyasky.png" alt="">
</div>
</div>
<div class="row pb-4">
<div class="col-lg-4 col-md-12 mb-3">
<h4 class='mb-4'>Ready to take the Leap?</h4>
<a href="#" class='btn btn-success px-5 py-2 mb-5'>Start!</a>
</div>
<div class="col-lg-2 col-md-3 col-sm-6 col-xs-6 my-2">
<li><a href="about.html">About Us</a></li>
<li><a href="courses.html">Our Course</a></li>
<li><a href="hireGrad.html">Hire a Grad</a></li>
</div>
<div class="col-lg-2 col-md-3 col-sm-6 col-xs-6 my-2">
<li><a href="curriculum.html">Curriculum</a></li>
<li><a href="blog2.html">Blog</a></li>
<li><a href="blog1.html">Student Stories</a></li>
</div>
<div class="col-lg-2 col-md-3 col-sm-6 col-xs-6 my-2">
<li><a href="search.html">Find a Course</a></li>
<li><a href="#">Our Partners</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</div>
<div class="col-lg-2 col-md-3 col-sm-6 col-xs-6 my-2">
<li><a href="help.html">FAQ</a></li>
<li><a href="termsOfService.html">Terms of Service</a></li>
<li><a href="#">Privacy Policy</a></li>
</div>
</div>
</div>
</div>
<div class="container-fluid text-white py-2" style="background: #2E0435; width:100%;">
<div class="container text-right">
<div class="row icons">
<div class="col-md-12 ">
<a href=""><i class="fab fa-twitter" aria-hidden="true"></i></a>
<a href=""><i class="fab fa-instagram" aria-hidden="true"></i></a>
<a href=""><i class="fab fa-facebook" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</footer>
<!-- End of Footer -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.15.0/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>