-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathH.html
77 lines (72 loc) · 2.49 KB
/
H.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Gusau Crime Reporting System</title>
</head>
<body>
<div class="watermark"></div> <!-- Watermark image -->
<header>
<nav class="navbar">
<div class="logo">GUSAU CRIME REPORTING SYSTEM</div>
<button class="menu-toggle" onclick="toggleMenu()">☰</button>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="crime2.html">Report a Crime</a></li>
<li><a href="Inde.html">Crime Dashboard</a></li>
<li><a href="crime-faqs.html">FAQs</a></li>
<li><a href="crime4.html">About Us</a></li>
<li><a href="crime6.html">Terms and Conditions</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
</ul>
</nav>
</header>
<main>
<section id="intro">
<h1>Welcome to the Gusau Crime Reporting System</h1>
<p>This platform enables you to report crimes securely and anonymously.</p>
<button onclick="location.href='crime2.html'" class="cta">Report a Crime Now</button>
</section>
<section id="statistics">
<h2>Featured Statistics</h2>
<div class="stats">
<div class="stat-item">
<h3>Total Reports</h3>
<p><strong>150</strong></p>
</div>
<div class="stat-item">
<h3>Resolved Cases</h3>
<p><strong>120</strong></p>
</div>
</div>
</section>
<section id="updates">
<h2>Recent Updates</h2>
<ul class="updates-list">
<li>New anonymous reporting feature added for increased privacy.</li>
<li>Increased collaboration with local law enforcement agencies.</li>
<li>Updated crime statistics dashboard with real-time data.</li>
</ul>
</section>
<section id="resources">
<h2>Resources</h2>
<div class="resources">
<a href="crime-prevention-tips.html" class="resource-card">
<h3>Crime Prevention Tips</h3>
<p>Learn ways to prevent and reduce crime in your community.</p>
</a>
<a href="community-initiatives.html" class="resource-card">
<h3>Community Initiatives</h3>
<p>Discover programs that encourage a safer neighborhood.</p>
</a>
</div>
</section>
</main>
<footer>
<p>© 2024 Gusau Crime Reporting System</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>