-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
38 lines (33 loc) · 1019 Bytes
/
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
<!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>
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="wishlist.html">Wishlist</a>
<a href="contact.html">Contact</a>
<a href="login.html">Login</a>
<a href="register.html">Register</a>
</nav>
</header>
<h1>Contact Us</h1>
<form>
<label for="username">Name:</label><br>
<input type="text" id="username" name="username"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message"></textarea><br>
<input type="submit" value="Send">
</form>
<footer>
<p>© 2024 Our Restaurant</p>
</footer>
</body>
</html>