-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFAQ.html
More file actions
127 lines (106 loc) · 2.92 KB
/
Copy pathFAQ.html
File metadata and controls
127 lines (106 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Policy Shield</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
text-align: center;
line-height: 1.6;
width: 400px;
height: 200px;
}
h1 {
font-size: 28px;
color: #333;
margin-bottom: 20px;
}
p {
font-size: 16px;
color: #555;
}
button {
padding: 10px 15px;
margin-top: 20px;
font-size: 16px;
cursor: pointer;
border: none;
background-color: #007bff;
color: white;
border-radius: 5px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
.faq-section {
margin: 30px auto;
text-align: left;
max-width: 600px;
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
background-color: #f9f9f9;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.faq-section h2 {
font-size: 22px;
margin-bottom: 15px;
color: #444;
}
.faq-question {
font-weight: bold;
margin-top: 15px;
color: #333;
}
.faq-answer {
margin-top: 5px;
color: #555;
line-height: 1.6;
}
.contact-email {
color: #007bff;
text-decoration: none;
}
.contact-email:hover {
text-decoration: underline;
}
h5 {
margin-top: 30px;
font-size: 16px;
color: #555;
}
</style>
<script src="scripts/faq.js" defer></script>
</head>
<body>
<h1>Poliscope - Troubleshooting</h1>
<p>If you have any questions or encounter any issues, refer to the FAQ below or contact us directly.</p>
<div class="faq-section">
<h2>Frequently Asked Questions</h2>
<div>
<div class="faq-question">Q.) What can I do if the file is not fetched by the program?</div>
<div class="faq-answer">
On some websites, CORS policies may prevent us from legally accessing documents concerning privacy policy. Please read the privacy policy through the provided link on the website if this issue occurs.
</div>
</div>
<div>
<div class="faq-question">Q.) I found a bug. How can I report it?</div>
<div class="faq-answer">
Please email me directly at <a href="mailto:aadi.chakraborty@gmail.com" class="contact-email">aadi.chakraborty@gmail.com</a>.
</div>
</div>
</div>
<div id="page_value" style="display: none;">Dashboard</div>
<button id="homepage">Back to home</button>
<h5>For further queries, contact <a href="mailto:aadi.chakraborty@gmail.com" class="contact-email">aadi.chakraborty@gmail.com</a></h5>
<script>
document.getElementById("homepage").addEventListener("click", function () {
window.location.href = "dashboard.html"; // Redirects to Dashboard.html
});
</script>
</body>
</html>