-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
50 lines (41 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Information</title>
</head>
<body>
<h2>Contact details</h2>
<p>
<ul>
<li>Email address:<a href="mailto:divyaagrawal1707@gmail.com">divyaagrawal1707@gmail.com</a></li>
<li>Phone Number:<a href="tel:+91-123456789">=91-123456789</a></li>
</ul>
</p>
<form action="mailto:divyaagrawal1707@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="YourName" value="">
<br />
<br>
<label>Enter your email address</label>
<input type="email" name="YourEmail" value="">
<br
<label>Your message:</label>
<br>
<textarea name="Yourmessage" rows="10" cols="30"></textarea>
<br>
<input type="submit" name="">
<br>
<!--
<label>Choose a file</label>
<input type="file" name="" value="">
<input type="submit" name="" >
<br>
<label>Choose date and time</label>
<input type="datetime-local" name="" value="">
<br>
<input type="search" name="" value="">
-->
</form>
</body>
</html>