-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
29 lines (29 loc) · 1.09 KB
/
contact.html
File metadata and controls
29 lines (29 loc) · 1.09 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
28
29
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>My Contact Details</h1>
<p>my address</p>
<p>phone number-8987465657</p>
<p>mail id-dincihk.gmail.com</p>
<form class="" action="mailto:sahasr369@gmail.com" method="post" enctype="text/plain">
<label>Name :</label>
<input type="text" name="your name" value=""><br>
<label>Email :</label>
<input type="email" name="your Email" value=""><br>
<label>Your message :</label><br>
<textarea name="youe message" rows="7" cols="30"></textarea><br>
<input type="submit" name=""><br>
<!-- <input type="color" name="" value=""><br> -->
<!-- <label>Do you want to sign up the list ? </label> -->
<!-- <input type="checkbox" name="" value=""> -->
<!-- <input type="date" name="" value=""> -->
<!-- <input type="file" name="" value=""> -->
<!-- <input type="radio" name="" value=""> -->
<!-- <input type="range" name="" value=""> -->
</form>
</body>
</html>