forked from AditiDiti/HelpingHands2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
113 lines (106 loc) · 3.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frequently Asked Questions</title>
<link rel="stylesheet" href="stylefaq.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div class="wrapper">
<h1 style="font-size: 50px;">Frequently Asked Questions</h1>
<br>
<div class="faq">
<button class="accordion">
How can I search for jobs on this website?
<i class="fa-solid fa-chevron-down"></i>
</button>
<div class="pannel">
<p>
You can search for jobs by entering keywords in the search
bar and filtering the results based on your preferences.
</p>
</div>
</div>
<br>
<div class="faq">
<button class="accordion">
Are there any fees for using this platform?
<i class="fa-solid fa-chevron-down"></i>
</button>
<div class="pannel">
<p>
<span class="bold-dark">No</span>, our platform is completely free for job seekers. There
are no hidden charges or fees.
</p>
</div>
</div>
<br>
<div class="faq">
<button class="accordion">
How can I contact employers through this website?
<i class="fa-solid fa-chevron-down"></i>
</button>
<div class="pannel">
<p>
You can contact employers by sending them a message
through our messaging system or by using the contact
information provided in the job listing.
</p>
</div>
</div>
<br>
<div class="faq">
<button class="accordion">
Can I receive job alerts for new postings?
<i class="fa-solid fa-chevron-down"></i>
</button>
<div class="pannel">
<p>
<span class="bold-dark">Yes</span>, you can set up job alerts based on your preferences.
You will receive notifications when new jobs matching your
criteria are posted.
</p>
</div>
</div>
<br>
<div class="faq">
<button class="accordion">
Is my personal information secure on this platform?
<i class="fa-solid fa-chevron-down"></i>
</button>
<div class="pannel">
<p>
<span class="bold-dark">Yes</span>, we take data privacy and security seriously. Your
personal information is encrypted and protected to ensure
confidentiality.
</p>
</div>
</div>
</div>
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function () {
this.classList.toggle("active");
this.parentElement.classList.toggle("active");
var pannel = this.nextElementSibling;
if (pannel.style.maxHeight) {
pannel.style.maxHeight = null;
} else {
pannel.style.maxHeight = pannel.scrollHeight + "px";
}
});
}
</script>
</body>
</html>