-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactme.html
More file actions
26 lines (26 loc) · 884 Bytes
/
contactme.html
File metadata and controls
26 lines (26 loc) · 884 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
<html>
<head>
<title>Contact Me </title>
</head>
<body>
<h1>My Contact Details</h1>
<hr>
<p>My Address.</p>
<p>090909090909</p>
<p>akshay96102@gmail.com</p>
<hr>
<form action="mailto:akshay96102@gmail.com" method="post" enctype="text/plain">
<label>Your name</label>
<input type="text" name="Customer Name" value="">
<label>Your Email</label>
<input type="email" name="Email" value="">
<label>Your Message</label>
<textarea name="name" rows="10" cols="30"></textarea>
<label>Upload File</label>
<input type="file" name="User file" vlaue="">
<label>Select Date</label>
<input type="Date" name="Date" value="">
<input type="submit" name="">
</form>
</body>
</html>