-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
39 lines (38 loc) · 1.29 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
<!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="style.css">
</head>
<body>
<header>
<h1>Contact Shoe Production Co.</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="product.html">Products</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<section class="contact">
<h2>Get in Touch</h2>
<p>We'd love to hear from you! Reach out for inquiries or more information.</p>
<form>
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" required></textarea><br><br>
<input type="submit" value="Send Message">
</form>
</section>
</main>
<footer>
<p>© 2024 Shoe Production Co. All rights reserved.</p>
</footer>
</body>
</html>