forked from DuckQuack001/LAFD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
49 lines (46 loc) · 2.4 KB
/
Copy pathabout.html
File metadata and controls
49 lines (46 loc) · 2.4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Los Angeles Fire Department - About</title>
<link rel="icon" href="https://www.lafd.org/favicon.ico" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="site-header">
<div class="container header-container">
<a href="/" class="logo-link" aria-label="Los Angeles Fire Department Home">
<img src="https://www.lafd.org/assets/images/LA_Fire_Dept_Logo.png" alt="LA Fire Department Logo" class="logo" />
</a>
<nav class="main-nav" aria-label="Primary navigation">
<ul class="nav-list">
<li><a href="/" class="nav-link">Home</a></li>
<li><a href="/about" class="nav-link active">About</a></li>
<li><a href="/recruitment" class="nav-link">Recruitment</a></li>
<li><a href="/hall-of-fame" class="nav-link">Hall of Fame</a></li>
<li><a href="/news" class="nav-link">News</a></li>
<li><a href="/services" class="nav-link">Services</a></li>
</ul>
</nav>
<button class="menu-toggle" aria-label="Toggle menu" aria-expanded="false">☰</button>
</div>
</header>
<main class="container">
<h1>About the Los Angeles Fire Department</h1>
<p>The Los Angeles Fire Department (LAFD) is committed to protecting lives, property, and the environment through fire prevention, emergency medical services, and disaster response.</p>
<p>Established in 1886, the LAFD has grown into one of the largest and most respected fire departments in the United States, staffed by highly trained and dedicated firefighters.</p>
</main>
<footer class="site-footer">
<div class="container footer-container">
<div class="footer-social" role="contentinfo" aria-label="Social media links">
<a href="https://twitter.com/LAFD" target="_blank" rel="noopener" aria-label="Twitter">Twitter</a>
<a href="https://facebook.com/LAFD" target="_blank" rel="noopener" aria-label="Facebook">Facebook</a>
<a href="https://instagram.com/LAFD" target="_blank" rel="noopener" aria-label="Instagram">Instagram</a>
</div>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>