-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
22 lines (22 loc) · 905 Bytes
/
feedback.html
File metadata and controls
22 lines (22 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Navigo Feedback</title>
<style>
body { font-family: Arial, sans-serif; padding: 20px; background: #f5f5f5; }
.container { max-width: 600px; margin: 0 auto; background: white; padding: 30px; border-radius: 10px; }
h1 { color: #333; text-align: center; }
textarea { width: 100%; height: 150px; padding: 10px; border: 1px solid #ddd; border-radius: 5px; }
button { background: #667eea; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; }
</style>
</head>
<body>
<div class="container">
<h1>Send Feedback</h1>
<p>Help us improve Navigo by sharing your thoughts:</p>
<textarea placeholder="Your feedback here..."></textarea>
<br><br>
<button onclick="alert('Thank you for your feedback!')">Submit Feedback</button>
</div>
</body>
</html>