-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
65 lines (60 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<style>
header {
background-color: #36abc6;
padding: 80px;
text-align: center;
font-size: 35px;
color: white;
}
form{
padding-block: 30px;
margin: 0 auto;
text-align: center;
display: flex;
flex-direction: column;
background-color: white;
padding: 30px;
width: 50%;
}
form label{
text-align: left;
}
form input, form textarea{
width: 100%; /* Make inputs take full width */
padding: 10px;
margin-bottom: 15px; /* Add space between input fields */
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
.rating{
align-items: left;
}
body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color:lightblue;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
</style>
</head>
<body>
<header>Feedback Form</header>
<form action="thank_you.html" autocomplete="on">
<label for="username" >Name: </label>
<input type="text" id="username" name="username" placeholder="John Doe" required>
<label for="mail">Email Id: </label>
<input type="email" id="mail" name="mail" placeholder="[email protected]" required>
<label for="phone_no">Phone Number: </label>
<input type="tel" id="phone_no" name="phone_no" placeholder="1234567890">
<label for="feedback">Feedback: </label>
<textarea name="message" rows="10" cols="30" placeholder="Your Feedback"></textarea>
<input type="submit" value="Submit"><br>
</form>
</body>
</html>