-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
37 lines (34 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Contact me</title>
</head>
<body>
<h1>Contact Details</h1>
<hr size="3">
<p><strong>Mobile No.</strong><em>+91 9156418324</em></p>
<p><strong>Email</strong><em>nitishbhosale7@gmail.com</em></p>
<p><h4 > Thanks for contacting </h4></p>
<hr>
<form action="mailto:nitishbhosale7@gmail.com" method="post" enctype="text/plain">
<table cellspacing="10">
<tr>
<td><label>Your Name:</label></td>
<td><input type="text" name="Name" value=""></td>
</tr>
<p></p>
<tr>
<td><label>Your email</label></td>
<td><input type="email" name="Email" value=""></td>
</tr>
<p></p>
<tr>
<td><label>Your Message</label><br></td>
<td><textarea name="Message" id="" cols="30" rows="5"></textarea></td>
</tr>
</table>
<input type="submit" name=""><br>
</form>
</body>
</html>