-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
51 lines (49 loc) · 2.09 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
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style4.css">
</head>
<body>
<header>
<section>
<h3><b>FRUITS AND VEGGIES DELIGHT</b></h3>
<nav>
<div class="logo"><img src="Images/Video/Logo.jpeg" class="logo" /></div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about us.html">About us</a></li>
<li><a href="services.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<section id="contact">
<h2>Contact Us</h2>
<form action="submit_form.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<div class="vist">
<h2>Visit us on</h2>
<a href="https://www.facebook.com" target="_blank"><img src="Images/Video/Facebook.jpg" alt="Facebook"></a>
<a href="https://www.twitter.com" target="_blank"><img src="Images/Video/Twitter.jpg" alt="Twitter"></a>
<a href="https://www.instagram.com" target="_blank"><img src="Images/Video/Instagram.jpg" alt="Instagram"></a>
<a href="https://www.whatsapp.com" target="_blank"><img src="Images/WhatsApp.jpg" alt="WhatsApp"></a>
</div>
<footer>
<p>© 2023 Fruits and Veggie Delight. All rights reserved.</p>
</footer>
</body>
</html>
</header>
</section>
</body>
</html>