-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (74 loc) · 2.34 KB
/
index.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
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body{
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-image: url('https://i.pinimg.com/736x/df/95/98/df95982825179a46e06f452c40590155.jpg');
}
form{
background: rgba(225,225,225,.8);
padding: 30px;
max-width: 600px;
margin: 100px auto;
border-radius: 10px;
}
h1{
text-align: center;
font-size: 2.5em;
color: #feea0b;
}
label{
display: block;
margin-top: 10px;
font-weight: bold;
}
input,textarea,button{
width: calc(100%-22px);
padding: 10px;
margin-top: 5px;
border: 1px solid gray;
border-radius: 5px;
}
button{
background-color: #28a745;
color: aliceblue;
border: none;
cursor: pointer;
font-size: 16px;
}
button:hover{
background-color: #218838;
}
button:active{
background-color: yellowgreen;
}
</style>
<title>FeedBack-Collection-Form 📩</title>
</head>
<body class="textc">
<h1>CoderOne Feedback System Form</h1>
<form action="/submit-feedback" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" />
<br /><br />
<label for="contactNumber">Contact Number:</label>
<input type="text" id="contactNumber" name="contactNumber" />
<br /><br />
<label for="email">Email:</label>
<input type="email" id="email" name="email" />
<br /><br />
<label for="feedback">Describe your feedback:</label>
<textarea name="feedback" id="feedback"></textarea>
<br><br>
<button type="submit">Submit</button>
<br /><br />
</form>
</body>
</html>