-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
63 lines (57 loc) · 2.17 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact-us</title>
</head>
<body style="background-color: rgb(245, 213, 235);">
<h1>Contact Us :</h1>
<hr>
<h3>Please Fill the details below, We'll get back to you via Mailing Facility.</h3>
<br>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<table>
<tr>
<td>
<label>First Name : </label>
<input type="text" name="First_Name" id="" placeholder="John">
<label >Last Name : </label>
<input type="text" name="Last_Name" id="" placeholder="Shah">
<br><br>
<label for="">Email : </label>
<input type="email" name="Email" id="" placeholder="[email protected]">
<br>
<br>
<label>Please leave your valuable message here...</label>
<br>
<textarea name="Message" id="" cols="60" rows="10" placeholder="Write your message here..."></textarea>
</td>
<td>
<img src="custinfo.png" alt="">
</td>
</tr>
</table>
<br><br>
<fieldset>
<legend>
<label for="">Rate your Experience</label>
</legend>
<label>Your experience on our Website</label><br>
<input type="range" name="User-Experience" id="" min="0" max="10">
<br><br>
<label for="">Did you find the content helpful ?</label>
<br>
<input type="radio" name="helpful" id="" value="Yes" checked>
<label for="">Yes</label><br>
<input type="radio" name="helpful" id="" value="No">
<label for="">No</label>
</fieldset>
<br>
<input type="checkbox" name="Agree" id="">
<label for="">I agree that on all the informations provided here by me are correct and best of my Knowledge.</label>
<input type="submit" value="Submit">
</form>
</body>
</html>