forked from Ojas-Arora/SCD-Profile-Score
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
163 lines (146 loc) · 4.28 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FAQ</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<style>
/* FAQ */
.faq-section {
max-width: 800px;
margin: 30px auto 20px auto;
padding: 20px;
}
.faq-section h2 {
text-align: center;
margin-bottom: 20px;
color: #333;
}
.faq-item {
margin-bottom: 10px;
border-bottom: 1px solid #ddd;
}
.faq-question {
padding: 15px;
cursor: pointer;
background-color: #f4f4f4;
color: #333;
font-size: 16px;
font-weight: bold;
border-radius: 4px;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
background-color: #fafafa;
padding: 0 15px;
}
.faq-answer p {
margin: 10px 0;
color: #555;
}
.faq-item.open .faq-answer {
max-height: 100px;
}
.back-button {
align-items: center;
gap: 10px;
font-size: 16px;
color: #fff;
background-color: #333;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 4px;
margin: 20px auto;
text-align: center;
}
.back-button i {
font-size: 14px;
}
.back-button:hover {
background-color: #555;
}
</style>
</head>
<body>
<button class="back-button" onclick="window.history.back();">
<i class="fas fa-arrow-left"></i>
</button>
<section class="faq-section">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<div class="faq-question">What is Ajivika, and how can it help me?</div>
<div class="faq-answer">
<p>
Ajivika is a smart job recommendation portal designed to help job
seekers. It lets you create professional resumes, get personalized
job suggestions, find skill-boosting courses, and track your career
progress easily.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How does Ajivika recommend jobs?</div>
<div class="faq-answer">
<p>
Ajivika analyzes your profile, skills, and preferences to suggest
jobs that match your qualifications and interests. It ensures you
get relevant and personalized job recommendations.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can Ajivika help me improve my skills?</div>
<div class="faq-answer">
<p>
Yes! Ajivika suggests courses based on your goals and job interests.
You can also take skill assessments to validate your abilities and
earn certificates.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
Is there support if I have career-related questions?
</div>
<div class="faq-answer">
<p>
Absolutely! Ajivika has a chatbot to provide instant help for any
career-related queries, making your journey smoother.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
Does Ajivika only focus on big cities for job opportunities?
</div>
<div class="faq-answer">
<p>
No! Ajivika also highlights jobs in smaller towns and regions,
ensuring job seekers from all areas can find opportunities close to
home.
</p>
</div>
</div>
</section>
<script>
const faqItems = document.querySelectorAll(".faq-item");
faqItems.forEach((item) => {
item.querySelector(".faq-question").addEventListener("click", () => {
item.classList.toggle("open");
faqItems.forEach((otherItem) => {
if (otherItem !== item) {
otherItem.classList.remove("open");
}
});
});
});
</script>
</body>
</html>