-
Notifications
You must be signed in to change notification settings - Fork 10
/
feedback.html
49 lines (48 loc) · 2.08 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
<html>
<head>
<title>
Feedback Page
</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="logo">
<img src="https://i.ibb.co/XfBtyZR/1683254736138.jpg" alt="Hotel Image" >
</div>
<div class="forum">
<form>
<h1>Feedback Page</h1>
<!-- <label for="name">Name:</label>
<input type="text" ><br><br> -->
<label for="Mobile No.">Mobile No.</label>
<input type="number" pattern="[0-9]{10}"><br><br>
<label for="Performance">Rate Our Service:<br>
<div class="rate">
<input type="radio" id="star5" name="rate" value="5" />
<label for="star5" title="text">5 stars</label>
<input type="radio" id="star4" name="rate" value="4" />
<label for="star4" title="text">4 stars</label>
<input type="radio" id="star3" name="rate" value="3" />
<label for="star3" title="text">3 stars</label>
<input type="radio" id="star2" name="rate" value="2" />
<label for="star2" title="text">2 stars</label>
<input type="radio" id="star1" name="rate" value="1" />
<label for="star1" title="text">1 star</label>
</div>
<br><br>
</label>
<!-- <label for="Occassion">Occassion:</label>
<input type="text"><br><br> -->
<label for="Feedback">Feedback:</label>
<input type="text" class="feedback"><br><br>
<!-- <label for="Email">Email ID: </label>
<input type="email"><br><br> -->
<button type="reset">Reset</button>
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>