-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (72 loc) · 3.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Disaster Reporting Tool</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="hero">
<div class="hero-content">
<h1>Disaster Reporting Tool</h1>
<p>Manage and report disasters efficiently with ease.</p>
</div>
</div>
</header>
<div class="container">
<section class="features">
<h2>Our Features</h2>
<div class="feature-grid">
<div class="feature-card reveal">
<div class="feature-image-wrapper">
<img src="alert.jpg" alt="Disaster Alerts Page" class="feature-icon">
</div>
<h3>Disaster Alerts Page</h3>
<p>View current disaster warnings and receive push notifications.</p>
<a href="disaster-alerts.html" class="btn-secondary">Know More</a>
</div>
<div class="feature-card reveal">
<div class="feature-image-wrapper">
<img src="error.png" alt="Report a Disaster" class="feature-icon">
</div>
<h3>Report a Disaster</h3>
<p>Provide detailed information about disasters and help us respond faster.</p>
<a href="report-form.html" class="btn-secondary">Go to Report Form</a>
</div>
<div class="feature-card reveal">
<div class="feature-image-wrapper">
<img src="stats.png" alt="Disaster Statistics" class="feature-icon">
</div>
<h3>Disaster Statistics</h3>
<p>Visualize real-time disaster data with graphs and heat maps.</p>
<a href="disaster-stats.html" class="btn-secondary">Know More</a>
</div>
<div class="feature-card reveal">
<div class="feature-image-wrapper">
<img src="relief.png" alt="Relief Fund" class="feature-icon">
</div>
<h3>Relief Fund</h3>
<p>Learn about ongoing relief efforts and how you can contribute to the disaster response.</p>
<a href="reliefefforts.html" class="btn-secondary">Know More</a>
</div>
</div>
</section>
</div>
<div id="reportModal" class="modal">
<div class="modal-content">
<h2>Report a Disaster</h2>
<p>Please provide detailed information about the disaster in your area.</p>
<a href="report-form.html" class="btn-primary">Go to Report Form</a>
<button class="close-btn" onclick="closeModal()">Close</button>
</div>
</div>
<footer>
<p>© 2024 Disaster Reporting Tool. All rights reserved.</p>
<p>Contact us at: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
<script src="scripts.js"></script>
</body>
</html>