-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
43 lines (39 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="/css/contact.css">
</head>
<body>
<!-- Header -->
<header>
<div class="logo">
<a href="/assest/logo/icon-demo.png"></a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="recommendations.html">Recommendations</a></li>
<li><a href="contact.html" class="active">Contact Us</a></li>
</ul>
</nav>
</header>
<!-- Contact Us Section -->
<section id="contact">
<h2>Contact Us</h2>
<form action="#" method="POST">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" rows="6" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<!-- Footer -->
<footer>
<p>© 2024 YourCompany. All Rights Reserved.</p>
</footer>
</body>
</html>