-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
39 lines (35 loc) · 1.02 KB
/
Contact.html
File metadata and controls
39 lines (35 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Contact Details</title>
</head>
<body>
<h2>Contact Details:</h2>
<p>Phone Number:9819232192</p>
<p>Email Address: krtksahrma21@mymail.com</p>
<p>You Can also Follow us on Insta Facebook</p>
<br>
<form action="mailto:krtksharma7@gmail.com" method="POST" enctype="text/plain" >
<fieldset>
<legend>
<b>You Can Contact Us here</b>
</legend>
<label for="N1">Name</label>
<input type="text" id="N1" name="Name" required>
<br>
<label for="N11">Email</label>
<input type="email" id="N11" name="Email" required>
<br>
<label for="N2">Password</label>
<input type="password" id="N2" name="pwd" required>
<br>
<label for="area">Your Message</label>
<br>
<textarea rows="10" cols="150"></textarea>
<br>
<input type="submit" value="submit">
<br>
</fieldset>
</form>
</body>
</html>