-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
56 lines (47 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - Crisis Management Platform</title>
<link rel="stylesheet" href="styles.css">
<style>
/* Change font color of content to grey */
body, p, dd {
color: #555; /* Dark grey */
}
</style>
</head>
<body>
<!-- Navigation Menu -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="howitworks.html">How It Works</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="emergency_contacts.html">Emergency Contacts</a></li>
<li><a href="saferytips.html">Safety Tips</a></li>
<li><a href="report.html">Report Crisis</a></li>
<li><a href="crisis_response.html">Crisis Response</a></li>
</ul>
</nav>
<!-- Main Content -->
<div class="container">
<h1>FAQ</h1>
<h2>Common FAQs on Crisis Management</h2>
<dl>
<dt>Q: What is crisis management?</dt>
<dd>A: Crisis management involves dealing with disruptive and unexpected events that threaten people, property, or reputation. It includes proactive planning, preparedness, response, and recovery strategies.</dd>
<dt>Q: Why is crisis management important?</dt>
<dd>A: Crisis management is important because it helps minimize the impact of crises, protects lives and property, maintains organizational reputation, and ensures business continuity.</dd>
<dt>Q: What are the key components of crisis management?</dt>
<dd>A: The key components of crisis management include risk assessment, crisis planning, communication strategies, response coordination, and post-crisis evaluation and learning.</dd>
<dt>Q: How can individuals and organizations prepare for crises?</dt>
<dd>A: Individuals and organizations can prepare for crises by developing crisis management plans, conducting risk assessments, training personnel, establishing communication protocols, and regularly reviewing and updating plans.</dd>
<dt>Q: What role does technology play in crisis management?</dt>
<dd>A: Technology plays a crucial role in crisis management by enabling real-time communication, data analysis, resource coordination, and information sharing. Crisis management platforms and tools help streamline response efforts and improve situational awareness.</dd>
</dl>
</div>
</body>
</html>