-
Notifications
You must be signed in to change notification settings - Fork 0
/
About Us.html
41 lines (40 loc) · 1.79 KB
/
About Us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Us | CrimeEye</title>
<link rel="stylesheet" href="About Us.css">
</head>
<body>
<header>
<div class="banner">
<div class="banner-links">
<a href="main.html" class="banner-link">HeatMap</a>
<a href="iconic.html" class="banner-link">Incident Map</a>
</div>
<div class="banner-logo">
<a href="index.html"><img src="images/logo.png" alt="CrimeEye Logo"></a>
</div>
<div class="banner-links">
<a href="About Us.html" class="banner-link">About Us</a>
<a href="Contact Us.html" class="banner-link">Contact Us</a>
</div>
</div>
</header>
<main>
<div class="about-container">
<div class="about-text">
<h1>Our Story</h1>
<p>CrimeEye is a crime tracking web app designed to keep the people of San Francisco informed about criminal activity in their area.
The app uses cutting-edge technology to monitor crime reports and provide real-time updates to users, helping them stay aware of potential risks in their neighborhoods.
As a user of CrimeEye, you can access crime maps, receive alerts, and stay up-to-date on local news and events related to crime in San Francisco. With its user-friendly interface and comprehensive coverage, CrimeEye is the ultimate tool for anyone looking to stay safe and informed in one of America's most vibrant cities.</p>
<img src="images/logo.png" alt="CrimeEye Logo" class="logo-small">
<img src="images/signature.png" alt="Founder's Signature" class="signature">
</div>
<div class="about-image">
<img src="images/pixel art city.jpg" alt="About Image" class="about-img">
</div>
</div>
</main>
</body>
</html>