-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
140 lines (126 loc) · 6.7 KB
/
faq.html
File metadata and controls
140 lines (126 loc) · 6.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ | Alpha-Tech</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<header>
<div class="container header-container">
<a href="index.html" class="logo">Alpha-Tech</a>
<nav>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="terms.html">Terms</a></li>
<li><a href="privacy.html">Privacy</a></li>
<li><a href="cookie-policy.html">Cookie Policy</a></li>
<li><a href="ethical-guidelines.html">Ethical Guidelines</a></li>
</ul>
</nav>
<div class="header-actions">
<a href="#" aria-label="User login"><i class="fa-solid fa-user"></i></a>
<button id="searchToggle" aria-label="Search"><i class="fa-solid fa-search"></i></button>
<button class="mobile-menu-toggle" id="mobileMenuToggle" aria-label="Menu">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</header>
<main class="main-content">
<section class="content-section">
<div class="container">
<h2 class="section-title">Frequently Asked Questions</h2>
<div class="faq-container">
<div class="faq-item">
<button class="faq-question">
How do I access the virtual labs?
<i class="fas fa-chevron-down"></i>
</button>
<div class="faq-answer">
<p>After signing up for a subscription plan, you'll receive an email with instructions to access our virtual labs. You can access them 24/7 through our learning portal using your account credentials. The labs are browser-based
and require no special software installation.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
What certifications do you prepare for?
<i class="fas fa-chevron-down"></i>
</button>
<div class="faq-answer">
<p>We offer comprehensive preparation for the following certifications:</p>
<ul>
<li>CEH (Certified Ethical Hacker)</li>
<li>OSCP (Offensive Security Certified Professional)</li>
<li>CISSP (Certified Information Systems Security Professional)</li>
<li>CompTIA Security+</li>
<li>CISM (Certified Information Security Manager)</li>
<li>CRISC (Certified in Risk and Information Systems Control)</li>
</ul>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
Do you offer any free resources?
<i class="fas fa-chevron-down"></i>
</button>
<div class="faq-answer">
<p>Yes! We offer several free resources to help you get started:</p>
<ul>
<li>Weekly cybersecurity webinars</li>
<li>Free introductory courses</li>
<li>Cybersecurity blog with tutorials</li>
<li>Community forums for knowledge sharing</li>
<li>Monthly newsletter with security tips</li>
</ul>
<p>Visit our Resources section to access these materials.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
How long does it take to complete a course?
<i class="fas fa-chevron-down"></i>
</button>
<div class="faq-answer">
<p>Course duration varies depending on the complexity and your pace:</p>
<ul>
<li>Beginner courses: 4-6 weeks (recommended 10 hours/week)</li>
<li>Intermediate courses: 8-12 weeks (recommended 15 hours/week)</li>
<li>Advanced certification prep: 12-20 weeks (recommended 20 hours/week)</li>
</ul>
<p>All courses are self-paced, so you can complete them faster or take more time as needed.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
What kind of support do you offer?
<i class="fas fa-chevron-down"></i>
</button>
<div class="faq-answer">
<p>We offer multiple levels of support:</p>
<ul>
<li><strong>Community Support:</strong> Access to our student forums</li>
<li><strong>Technical Support:</strong> Help with platform and lab access</li>
<li><strong>Mentorship:</strong> Professional guidance (available in Pro and Enterprise plans)</li>
<li><strong>24/7 Premium Support:</strong> Dedicated support team (Enterprise plan)</li>
</ul>
<p>Response times vary by support level, ranging from 24 hours for community support to 1 hour for premium support.</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<!-- Same footer as index.html -->
</footer>
<button class="back-to-top" id="backToTop">
<i class="fas fa-arrow-up"></i>
</button>
<script src="scripts.js"></script>
</body>
</html>