-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRatingandfeedback.html
45 lines (38 loc) · 1.11 KB
/
Ratingandfeedback.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
<!DOCTYPE html>
<html>
<head>
<title>Feedback and Rating Page</title>
<link rel="stylesheet" type="text/css" href="Ratingandfeedback.css">
</head>
<body>
<nav>
<div class="navbar">
<a href="main.html">Home</a>
<a href="#">About</a>
<a href="contact.html">Contact</a>
</div>
</nav>
<div class="container">
<h1>Feedback and Rating</h1>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="rating">Rating:</label>
<select id="rating" name="rating" required>
<option value="">Select a rating</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<label for="feedback">Feedback:</label>
<textarea id="feedback" name="feedback" required></textarea>
<button type="submit">Submit</button>
</form>
</div>
<script src="Ratingandfeedback.js"></script>
</body>
</html>