-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeedback.html
27 lines (27 loc) · 1009 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Company Feedback Form</title>
<link rel="stylesheet" href="D:\gitcoll\project_overstock\css\feedback.css">
</head>
<body>
<div class="container">
<a href="index.html"><img src="https://searchlogovector.com/wp-content/uploads/2018/09/overstock-logo-vector.png" alt="logo"></a>
<form>
<div class="form-group">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Your Email:</label>
<input type="text" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Your Feedback:</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit" class="button">Submit Feedback</button>
</form>
</div>
</body>
</html>