-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
36 lines (32 loc) · 1.06 KB
/
Copy pathcontact.html
File metadata and controls
36 lines (32 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Us - Elite Tech Solutions</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>Contact Us</h1>
<nav>
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<section class="container contact">
<h2>We'd love to hear from you</h2>
<p>Have questions or need help? Reach out anytime!</p>
<p>Email: <a href="mailto:brea254@gmail.com">brea254@gmail.com</a></p>
</section>
<footer>
<p>© 2025 Elite Tech Solutions. All rights reserved.</p>
</footer>
</body>
</html>