-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
30 lines (27 loc) · 1010 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
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<ul>
<li><a href="mailto:dolphin.tc.ye@gmail.com?subject=feedback from Personal Site">Email me</a></li>
<li><a href="https://wa.me/919845328338?text=hi">WhatsApp Direct Link</a></li>
</ul>
<hr>
<form action="mailto:dolphin.tc.ye@gmail.com?subject=feedback from Personal Site" method="post" enctype="text/plain"> <!-- action here takes us back to main page -->
<label>Your Name:</label>
<input type="text" name="" value="">
<br>
<label>Your Email:</label>
<input type="email" name="" value=""><br>
<label>Your Message</label><br>
<textarea name="message" rows="10" cols="30"></textarea><br>
<input type="submit" name="" value="Submit">
</form>
</body>
</html>