-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
46 lines (45 loc) · 1.48 KB
/
contact.html
File metadata and controls
46 lines (45 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus Technologies</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">Nexus Technologies</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="page-hero">
<h1>Get In Touch</h1>
<p>We'd love to hear from you. Let's build something great together.</p>
</section>
<section class="contact-section">
<div class="contact-info">
<h2>Contact Details</h2>
<p>📧 hello@nexustech.com</p>
<p>📞 +254 700 000 000</p>
<p>📍 Nairobi, Kenya</p>
</div>
<form class="contact-form">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" rows="5" required></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© 2025 Nexus Technologies. All rights reserved.</p>
</footer>
</body>
</html>