-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContactme.html
40 lines (40 loc) · 1.18 KB
/
Contactme.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Contact Me</title>
</head>
<body>
<h3>My Contact Details</h3>
<p>
<strong>Name: </strong>Niranjan Rajkiran Langade <br />
<strong>Address: </strong>At/P Vaduj Tal.Khatav Dist.Satara Pin:415506
<br />
<strong>Mobile Number: </strong>9561350845 <br />
<strong>Email Address: </strong>[email protected] <br />
<strong>linkedin Profile: </strong>
<a
href="https://www.linkedin.com/in/langade-niranjan-49185122a/?originalSubdomain=in"
>My Linkedin</a
>
<br />
<strong>Instagram Profile: </strong>
<a href="https://www.instagram.com/niranjan_4.5/?hl=en">My Instagram</a>
</p>
<hr />
<form
action="mailto:[email protected]"
method="postmail.google.com"
enctype="text/plain"
>
<label for="">Your Name :</label>
<input type="text" name="yourName" />
<br />
<label for="">Your email : </label>
<input type="email" name="yourEmail" /><br />
<label for="">Your Message : </label> <br />
<textarea name="yourMessage" id="" cols="30" rows="10"></textarea><br />
<input type="submit" />
</form>
</body>
</html>