-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
29 lines (26 loc) · 908 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
28
29
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h2>My Contact Address</h2>
<p>Nepal</p>
<p><strong>WhatsApp</strong>: +977-9818813097</p>
<p><strong><a href="https://www.instagram.com/ssinghakshit">Instagram</a></strong></p>
<p><strong><a href="https://www.linkedin.com/in/ssinghakshit">LinkedIn</a></strong></p>
<hr>
<form action="mailto:[email protected]" 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>
</form>
</body>
</html>