-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFeedback form.html
More file actions
43 lines (42 loc) · 1.35 KB
/
Feedback form.html
File metadata and controls
43 lines (42 loc) · 1.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback Form</title>
<h3>Feedback Form</h3>
<form action="action/">
<label for="name">Name :</label>
<input type="text" id="name" name="name" placeholder="Write your name">
<br>
<label for="email">Email :</label>
<input type="email" id="email" name="email" placeholder="Write your email">
<br>
<label for="message">Message :</label>
<br>
<textarea name="message" id="message" cols="30" rows="4"></textarea>
<br>
<label for="rating">Rate us out of 5</label>
<br>
<input type="radio" id="1" name="rating" value="1">
<label for="1">1</label>
<br>
<input type="radio" id="2" name="rating" value="2">
<label for="2">2</label>
<br>
<input type="radio" id="3" name="rating" value="3">
<label for="3">3</label>
<br>
<input type="radio" id="4" name="rating" value="4">
<label for="4">4</label>
<br>
<input type="radio" id="5" name="rating" value="5">
<label for="5">5</label>
<br>
<button>Submit</button>
</form>
</head>
<body>
</body>
</html>