-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
27 lines (25 loc) · 897 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Abhishek's Contact</title>
</head>
<body>
<ul>
<li>Phone no: <em> 7275297200 </em></li>
<li>Email id: <em> pratapabhisheksingh595@gmail.com </em></li>
<h3>Contact Me</h3>
<form class="" action="mailto:pratapabhisheksingh595@gmail.com" method="post" enctype="text/plain">
<label>Your Name</label>
<input type="text" name="Your Name" value=""><br>
<label>Your Email</label>
<input type="email" name="Your Email" value=""><br>
<label>Your Message: </label><br>
<textarea name="Your Message" rows="10" cols="30"></textarea> <br>
<input type="submit" name=""><br>
<label>Do You want to Sign up to the email list?</label>
<input type="checkbox" name="" value=""><br>
</form>
</ul>
</body>
</html>