-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
43 lines (42 loc) · 1.3 KB
/
contact.html
File metadata and controls
43 lines (42 loc) · 1.3 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
<!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</title>
</head>
<body>
<form action="mailto:sam.ahuja1993@gamil.com" method="post" enctype="text/plain">
<h5>Enter Your Details We will contact you soon</h5>
<label for="Name">Your Name
<input id=Name type="text" name="yourName">
</label>
<br>
<br>
<label for="password">Password
<input type="password" name="password">
</label>
<br>
<br>
<label for="">Are you under 18</label>
<input type="checkbox" name="Are you under 18" id="agecheck">
<br>
<br>
<label for="">Feedback & level </label>
<input type="button" value="Satisfied" name="Feedback">
<input type="range">
<br>
<br>
<label for="">Supporting Documents </label>
<input type="file" name="Supporting Document " id="">
<br><br>
<label for="">Your message</label>
<br>
<textarea name="MESSAGE" id="" cols="20" rows="10" ></textarea>
<br>
<br>
<input type="submit">
</form>
</body>
</html>