-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfback.html
More file actions
72 lines (67 loc) · 1.88 KB
/
fback.html
File metadata and controls
72 lines (67 loc) · 1.88 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
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
71
72
<html>
<head>
<title>FEEDBACK
</title>
<style>
div.form {
background: linear-gradient(45deg, dodgerblue, white, purple);
width: 12cm padding:10px 20px;
border-radius: 10px;
}
label {
width: 130px display: iline-block;
margin: 0.2cm;
font-size: 19px;
font-weight: bold;
}
input {
padding: 4px;
margin: 5px;
font-size: 16px;
border-radius: 10px;
border: 1px solid;
width: 7cm;
}
h3 {
text-align: center;
color: black;
font-size: 24px;
}
</style>
</head>
<body>
<div class="form">
<form>
<h3> Give Your Feedback </h3>
<Label> First name: </Label>
<input type="text"><br>
<Label> Last Name: </Label>
<input type="text"><br>
<Label> Phone number: </Label>
<input type="number"> <br>
<Label> Email id: </Label>
<input type="e-mail"> <br>
<Label> Password: </Label>
<input type="password"> <br>
<Label> Country: </label>
<input type="text"> <br>
<Label> City: </Label>
<input type "text"><br>
<Label> Address: </Label>
<input type="text"><br>
<Label> How was our service: <label>
<input type ="text">
<br>
<Label> Which food item did you liked the most: </label>
<input type="text">
<br>
<Label> What would you like to see improved the most: </Label>
<input type="Text">
<br>
<center>
<input type="Submit"> <input type="reset">
</center>
</form>
</div>
</body>
</html>