-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactinfo.html
28 lines (28 loc) · 938 Bytes
/
contactinfo.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>CONTACT INFO</title>
</head>
<body>
<h2>CONTACT INFO</h2>
<ul>
<li>Gmail: ajfas@ajfa.org</li>
<li>phone:123456789</li>
</ul>
<form action="mailto:farjad.ajfa.khan0@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="Yourname" value=""><br>
<label>ready to do bussiness with us</label>
<input type="checkbox" name="Bussiness" value=""><br>
<label>Meet up</label>
<input type="date" name="meetup" value=""><br>
<label>Email:</label>
<input type="email" name="yourmail" value=""><br>
<label>Your resources and expectations:</label><br>
<textarea name="resources" rows="8" cols="30"></textarea><br>
<input type="submit" name="" value="send">
</form>
</body>
</html>
<!-- -->