-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
51 lines (38 loc) · 1.93 KB
/
Copy pathfeedback.html
File metadata and controls
51 lines (38 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback Form</title>
</head>
<body>
<h1><strong>WELCOME TO THE FEEDBACK FORM</strong></h1><br>
<form action="mailto:cool.dhruv225@gmail.com" method="POST" class="" enctype="multipart/form-data" >
<label for="names">Enter Your Name: </label>
<input type="text" id="names" name="names"><br><br>
<label for="age">Enter Your Age: </label>
<input type="text" id="age" name="age"><br><br>
<label>Gender: </label><br><br>
<label for="male">Male</label>
<input type="radio" id="male" name="male"><br>
<label for="male">Female</label>
<input type="radio" id="female" name="female"><br>
<label for="male">Other</label>
<input type="radio" id="other" name="other"><br><br><br>
<label>Enter your Rating (Out of 5) :</label>
<select id="stars" name="stars">
<option value="one">⭐</option>
<option value="two">⭐⭐</option>
<option value="three">⭐⭐⭐</option>
<option value="four">⭐⭐⭐⭐</option>
<option value="five">⭐⭐⭐⭐⭐</option>
</select>
<br><br><br><label>Enter any other valuable message: </label>
<textarea name="message" rows="10" cols="30">Enter any message here........</textarea><br><br>
<button type="button" onclick="alert('Thank You For Visiting')">Click Me!!!</button><br><br>
<input type="button" onclick="alert('bye')" value="Click!!"><br> <br> <!--This is an empty button since input is an empty tag-->
<input type="submit" value="Submit"> <br><br>
<!--When we used value here the button would display value-->
</form>
</body>
</html>