-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
43 lines (39 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact Details</title>
</head>
<body>
<h1>Contact Details</h1>
<ol>
<li> Phone Numbers<br>
<ul>
<li>+91 8126262529</li>
<li>+91 6396439904</li>
</ul>
</li>
<li>Email Ids <br>
<ul>
<li>amancanbeatyou007@gmail.com</li>
<li>messagetoamankumar@gmail.com</li>
</ul>
</li>
<li>Address<br>
<ul>
<li>Chandigarh</li>
<li>Dhampur</li>
</ul>
</li>
</ol>
<form action="mailto:messagetoamankumar@gmail.com" target="_blank" method="post" enctype="text/plain">
<label>Name</label>
<input type="text" name="Name" value="" required placeholder="Aman"><br>
<label>Email</label>
<input type="email" name="Email" value="" required placeholder="info@gmail.com"><br>
<label>Message</label>
<textarea name="Message" rows="10" cols="20" placeholder="Write your message here!"></textarea><br>
<br>
<input type="submit" name="">
</form>
</body>
</html>