-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
25 lines (23 loc) · 802 Bytes
/
Copy pathcontact.html
File metadata and controls
25 lines (23 loc) · 802 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>My contact details</h1>
<p>My fictional address</p>
<p>9995821503</p>
<p>greenarrow@gmail.com</p>
<form action="mailto:harikrishnanmnair2002@gmail.com" method="post" enctype="text/plain">
<label>Your Name: </label>
<input type="text" name="yourName" value=""><br>
<label>Your Email:</label>
<input type="email" name="yourEmail"><br>
<label>Your Message:</label>
<textarea name="yourMessage" id="" cols="20" rows="1"></textarea>
<br>
<input type="submit" name="">
</form>
</body>
</html>