-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
29 lines (28 loc) · 1.17 KB
/
contacts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact</title>
</head>
<body>
<h2>Connect with me:</h2>
<ul>
<li><a href="https://www.facebook.com/GauravPratapStha/">Facebook</a></li>
<li><a href="https://www.linkedin.com/in/gaurav-pratap-shrestha-258b65219/">Linkedin</a></li>
<li><a href="https://www.instagram.com/_gauravshrestha/">Instagram</a></li>
<li><a href="https://twitter.com/GvShrestha">Twitter</a></li>
</ul>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain" target="_blank">
<label for="name">Your Name:</label>
<input type="text" name="youName" id="" placeholder="Name"><br>
<label for="email">Your Email:</label>
<input type="email" name="yourEmail" id="" placeholder="Email"><br>
<label for="message">Your Message:</label><br>
<textarea name="yourMessage" id="" cols="35" rows="10" placeholder="Enter Message"></textarea><br>
<input type="submit" name="" id="">
</form>
</body>
</html>