-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
31 lines (29 loc) · 1009 Bytes
/
about.html
File metadata and controls
31 lines (29 loc) · 1009 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Fire Safety Solutions</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>About Fire Safety Solutions</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>Who We Are</h2>
<p>We specialize in fire alarm systems, water pipelines, wiring, and fire extinguishers. Our expertise ensures top-notch fire safety solutions for commercial and residential properties.</p>
</section>
<footer>
<p>© 2025 Fire Safety Solutions. All Rights Reserved.</p>
</footer>
</body>
</html>