-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnect.html
More file actions
22 lines (22 loc) · 770 Bytes
/
connect.html
File metadata and controls
22 lines (22 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Connect</title>
</head>
<body>
<p>My Contact Number - 8279839795</p>
<p>My Email Address - prajwalchoudhary14@gmail.com</p>
<h3>Do consider filling your details to get in touch:</h3>
<form action="mailto:prajwalchoudhary14@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="Name" value=""><br>
<label>Your Email:</label>
<input type="email" name="Email" value=""><br>
<label>Your Message:</label><br>
<textarea name="Message" rows="10" cols="10"></textarea><br>
<input type="submit" name="">
</form>
<hr size="3" noshade>
</body>
</html>