-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-me.html
More file actions
27 lines (27 loc) · 1.05 KB
/
contact-me.html
File metadata and controls
27 lines (27 loc) · 1.05 KB
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">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact-me</title>
</head>
<body>
<h1>My contact details</h1>
<p>my fictional address</p>
<p>9668537293</p>
<p>myemail@gmail.com</p>
<form action="mailto:nikhilkhuntia721@gmail.com"method = "post"enctype="plain/text"></form>
<!-- post function transfers whatever we type into the below form to the email client -->
<!-- <form action="index.html">
here the action command takes you back to the home page once you press the submit button -->
<label >Your Name:</label>
<input type="text"name = "Your name"><br>
<label for="">Your email:</label>
<input type="email"name = "Your email"><br>
<label for="">Your message:</label><br>
<textarea name="Your text" id="" cols="30" rows="10"></textarea>
<input type="submit">
</form>
</body>
</html>