-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
59 lines (52 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<h2>Contact Me</h2>
<h3>Phone Number:</h3>
<p>8463423423</p>
<h3>Email Address:</h3>
<p>sakshi@gmail.com</p>
<h3>Home Address:</h3>
<address>
Omkar Nagar,
Mhasrul,
Nashik -4.
</address>
<hr>
<h2>Feedback</h2>
<form class="" action="mailto:sakshi1314.d@gmail.com" method="post">
<label>Your name</label>
<input type="text" name="" value="">
<br>
<label>Email:</label>
<input type="email" name="" value="">
<br>
<label>Password:</label>
<input type="password" name="" value="">
<br>
<label>Enter date:</label>
<input type="date" name="" value="">
<br>
<label>Do you want to continue?</label>
<input type="radio" name="Yes" value="">
<input type="radio" name="No" value="">
<br>
<label>Choose file</label>
<input type="file" name="" value="">
<br>
<label>Message</label>
<textarea name="YourMsg" rows="5" cols="10"></textarea>
<br>
<label>How happy are you?</label>
<input type="range" name="" value="">
<br>
<label>Do you like my page?</label>
<input type="checkbox" name="" value="">
<input type="submit" name="">
</form>
</body>
</html>