-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
29 lines (25 loc) · 871 Bytes
/
contact.html
File metadata and controls
29 lines (25 loc) · 871 Bytes
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>
<head>
<meta charset="UTF-8">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<ul>
<li><strong>E-mail</strong> :- ashwinskrishna2006@gmail.com</li>
<li><strong>Phone</strong> :- +919497133899</li>
<li><strong>Instagram</strong> :- <a href="https://www.instagram.com/askpiano/">do follow me😁</a></li>
</ul>
<hr>
<form action="mailto:ashwinskrishna2006@gmail.com" method="post" enctype="text/plain">
<label>Your Name: </label>
<input type="text" name="yourName"><br>
<label>Your E-Mail: </label>
<input type="email" name="yourEmail"><br>
<label>Your Message: </label><br>
<textarea cols="30" rows="10" name="yourMessage"></textarea><br>
<input type="submit">
</form>
</body>
</html>