-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
34 lines (33 loc) · 1.05 KB
/
feedback.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="feedback.css">
<title>FEEDBACK</title>
</head>
<body>
<div class="full-page">
<div class="navbar">
<div>
<a href='website.html'>hotel management<a>
</div>
<nav>
<ul id='MenuItems'>
<li><a href='#'>Home</a></li>
<li><a href='#'>About Us</a></li>
<li><a href='#'>Services</a></li>
<li><a href='#'>Contact</a></li>
</ul>
</nav>
</div>
</div>
<h1>feedback</h1>
<div id=p class =p>
<form action="thankyou.html" method="POST">
<textarea name="feed" id="feed" cols="30" rows="10"></textarea><br>
<button type="submit">submit</button>
<button type="reset">clear</button>
</div>
</form>
</body>
<html>