-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (75 loc) · 3.27 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
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DisasterWatch - Real-Time Crowdsourced Reporting</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="bgimage"></div>
<header class="hero">
<div class="hero-container">
<h1>DisasterWatch: Real-Time Crowdsourced Reporting</h1>
<p>Report, track, and stay updated on disasters in your area.</p>
<a href="report.html" class="btn">Report a Disaster</a>
<a href="#about-us" class="btn btn-light">Learn More</a>
<img src="log.png" alt="DisasterWatch Logo" style="position: absolute; top: 1px; left: 10px; width: 200px; height: 100px;">
</div>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="report.html">Report a Disaster</a></li>
<li><a href="map.html">Live Map</a></li>
<li><a href="how-it-works.html">How It Works</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="service.html">Our Services</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<section id="about-us" class="about">
<h2>About DisasterWatch</h2>
<p>DisasterWatch is a platform that allows users to report, verify, and stay informed about natural disasters in real-time. We aim to create a community-driven, crowdsourced tool that enhances disaster response efficiency by leveraging real-time data from affected individuals.</p>
<img src="disaster.png" alt="Disaster Image" class="about-us-bg">
</section>
<section class="map">
<h2>Live Disaster Map</h2>
<p>Track ongoing disasters around you using our interactive map, updated in real-time by user reports.</p>
<a href="map.html" class="btn">View Live Map</a>
</section>
<section class="how-it-works">
<h2>How It Works</h2>
<p>DisasterWatch works by allowing users to report disasters, which are then verified and displayed on a live map. By crowdsourcing data from those directly impacted, we provide accurate and timely information to help people stay safe and informed.</p>
</section>
<section class="resources">
<h2>Resources</h2>
<p>Find emergency contacts, disaster preparedness tips, and safety guidelines to stay informed and prepared during disasters.</p>
</section>
<section class="contact">
<h2>Contact Us</h2>
<p>Have questions or feedback? Reach out to us!</p>
<ul>
<li>Email: [email protected]</li>
<li>Phone: (555) 555-5555</li>
</ul>
<form action="#" class="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<ul>
<li><a href="privacy-policy.html">Privacy Policy</a></li>
<li><a href="terms-of-service.html">Terms of Service</a></li>
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
</ul>
</footer>
</body>
</html>