forked from 18Nikhil786/CHITKARA-TRAVELS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeedback Form.html
70 lines (55 loc) · 2.16 KB
/
Feedback Form.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
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<title>Feedback Form</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="Feedback.css">
</head>
<body>
<div class="view">
<img src="1.svg">
</div>
<div class="container">
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
<h1 class="text-center mt-5 font-weight-bold">Feedback</h1>
<hr class="bg-white">
<h6 class="text-center">Please write your feedback below:</h6>
<h3 class="mt-4">How do you rate your overall experience?</h3>
<form>
<label class="radio-inline"><input type="radio" name="experience" value="bad">Bad</label>
<label class="radio-inline"><input type="radio" name="experience" value="average">Average</label>
<label class="radio-inline"><input type="radio" name="experience" value="good">Good</label>
</div>
</div>
<div class="row">
<div class="col-md-2"></div>
<label class="col-md-4">Full Name*<br>
<input type="text" id="text" required="" placeholder="Enter your name"></label>
<label class="col-md-4">Email*<br>
<input type="text" id="text" required="" placeholder="Enter your email"></label>
</div>
<div class="row">
<div class="col-md-2"></div>
<label class="col-md-4">Age<br>
<input type="number" id="text" placeholder="Enter your age"></label>
<label class="col-md-4">Phone*<br>
<input type="number" id="text" required="" placeholder="Enter your number"></label>
</div>
<div class="row">
<div class="col-md-2"></div>
<label class="col-md-8">Message*<br>
<textarea id="message" required="" placeholder="Write yor message here" cols="48" rows="5"></textarea></label>
</div>
<div class="row">
<div class="col-md-2"></div>
<button class="btn btn-primary" style="width: 29.5%; position: absolute; margin-left: 20%;">Submit</button>
</div>
</form>
</div>
</body>
</html>