-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
50 lines (50 loc) · 1.97 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Department of Justice</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<img src="images/logo.png" alt="Department of Justice Logo" class="logo">
<h1>Department of Justice</h1>
<button class="menu-toggle" aria-label="Toggle navigation">☰</button>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="contact">
<div class="container">
<h2>Contact Us</h2>
<form id="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Department of Justice. All rights reserved.</p>
<div class="social-links">
<a href="https://www.facebook.com/DOJ" class="social-icon">Facebook</a>
<a href="https://twitter.com/DOJ" class="social-icon">Twitter</a>
<a href="https://www.linkedin.com/company/doj" class="social-icon">LinkedIn</a>
</div>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>