-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (67 loc) · 3.35 KB
/
Copy pathindex.html
File metadata and controls
72 lines (67 loc) · 3.35 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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 - Home</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="LAFd 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="recruitment.html" class="nav-link">Recruitment</a></li>
<li><a href="hall-of-fame.html" class="nav-link">Hall of Fame</a></li>
</ul>
</nav>
<button class="menu-toggle" aria-label="Toggle menu" aria-expanded="false">☰</button>
</div>
</header>
<main>
<section class="hero-banner" role="banner">
<img src="Banner2.png" alt="Firefighters in action" class="hero-image" />
<div class="hero-text">
<h1>Los Angeles Fire Department</h1>
<p>Protecting Life and Property</p>
</div>
</section>
<section 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>
<p>Recently Updated in 2025 With an entire Server revamp and increased activity. It makes them stand out!</p>
</section>
<section class="news-section container" aria-label="Latest News">
<h2>Latest News</h2>
<article class="news-item">
<h3><a href="https://discord.com/channels/1201240671399460925/1201280231089127425" class="news-link">Imporant Annoucments</a></h3>
<p>To Be Updated on Everything LAFD!</p>
</article>
<article class="news-item">
<h3><a href="https://discord.com/channels/1201240671399460925/1355640478552559687" class="news-link">Question of the day!</a></h3>
<p>A Question Every Day for you to express your thoughts!</p>
</article>
<article class="news-item">
<h3><a href="https://discord.com/channels/1201240671399460925/1367567331383050310" class="news-link">Press Release</a></h3>
<p>All your News in one place!</p>
</article>
</section>
</main>
<footer class="site-footer">
<div class="container footer-container">
<div class="footer-social" role="contentinfo" aria-label="Social media links">
<a href="https://discord.gg/7w6VKjkcvF" target="_blank" rel="noopener" aria-label="Twitter">Discord (LAFD)</a>
<a href="https://discord.gg/DbVZgttXU9" target="_blank" rel="noopener" aria-label="Twitter">Discord (LARP)</a>
</div>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>