-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
27 lines (23 loc) · 932 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>Contact Page</title>
</head>
<body>
<h3>Contact Details are Given Below: </h3>
<ul>
<li>My Linkdin Profile<a href="https://www.linkedin.com/in/sanju-chowdhury-0088/"> <strong>Click here!!</strong> </a></li>
<li>My E-mail Address<a href="https://[email protected]/"> <strong>Click here!!</strong> </a></li>
</ul>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="Name">Your Name: </label>
<input type="text" name="Your Name" value=""><br><br>
<label for="email">Your Email:</label>
<input type="text" name="Email" value=""><br>
<label for="Your Message">Your Message</label>
<textarea name="Your Message" rows="8" cols="20"></textarea>
<input type="submit">
</form>
</body>
</html>