-
Notifications
You must be signed in to change notification settings - Fork 419
/
feedback.html
57 lines (50 loc) · 2.24 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback Form</title>
<link rel="stylesheet" href="style1.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<a href="./index.html"><button id="back_to_home">Back To Home</button></a>
<div class="feedback-form">
<h2>Feedback Form</h2>
<!-- Rating Section -->
<div class="form-group rating">
<label for="rating">How would you rate your experience?</label>
<div class="rating-stars">
<input type="radio" name="rating" id="star5" value="5">
<label for="star5" title="5 stars"></label>
<input type="radio" name="rating" id="star4" value="4">
<label for="star4" title="4 stars"></label>
<input type="radio" name="rating" id="star3" value="3">
<label for="star3" title="3 stars"></label>
<input type="radio" name="rating" id="star2" value="2">
<label for="star2" title="2 stars"></label>
<input type="radio" name="rating" id="star1" value="1">
<label for="star1" title="1 star"></label>
</div>
</div>
<!-- Feedback Text Section -->
<div class="name-email-bg">
<div class="form-group">
<label for="name"><i class="fas fa-user"></i> Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email"><i class="fas fa-envelope"></i> Email</label>
<input type="email" id="email" name="email" required>
</div>
</div>
<div class="form-group">
<label for="feedback"><i class="fas fa-comment-alt"></i> Your Feedback:</label>
<textarea id="feedback" rows="4" placeholder="Write your feedback here..."></textarea>
</div>
<!-- Submit Button -->
<button class="submit-btn" id="submitBtn">Submit</button>
</div>
<script src="script.js"></script>
</body>
</html>