-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
43 lines (42 loc) · 1.4 KB
/
form.html
File metadata and controls
43 lines (42 loc) · 1.4 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>FeedbackForm</title>
<link rel="stylesheet" href="formstyle.css">
</head>
<body>
<!-- <hr><hr> -->
<div id="heading">
<h1>Please fill out honest review!</h1>
</div>
<h3>* means its compulsory to fill that field.</h3>
<!-- <hr><hr> -->
<br><br>
<form class="formBox" action="feedback.php" method="post">
<label for="name">Name:*</label><br>
<input type="text" name="name" id="name" required>
<!-- <br><br>+ -->
<label for="email">Email:*</label>
<!-- <br> -->
<input type="email" name="email" id="email" required>
<!-- <br><br> -->
<label for="rating">Rating:*</label>
<!-- <br> -->
<select name="rating" id="rating" required>
<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>
<!-- <br><br> -->
<label for="comment">Comment:*</label><br>
<textarea name="comment" id="comment" placeholder="Write your comment here." cols="30" rows="10" required></textarea>
<br><br>
<input type="submit" value="Submit">
</form>
<!-- <hr> -->
</body>
</html>