-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
25 lines (25 loc) · 756 Bytes
/
contact.html
File metadata and controls
25 lines (25 loc) · 756 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>
<title>My Contact Details</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<h3>My Contact Details</h3>
<hr>
<p>Email:mehersatyadhiren@gmail.com</p>
<p>Moible/Whatsapp: 9100840804</p>
<hr>
<form action='mailto:mehersatyadhiren@gmail.com' method="POST" enctype='text/plain'>
<label>Your Name:</label>
<input type="text" name='Your Name'><br>
<label>Your Email:</label>
<input type="email" name="Your Email"><br><br>
<label>Your File:</label>
<input type="file" name="Your File"><br><br>
<label>Your Message:</label><br>
<textarea name="Your Message" rows='10' cols='30' ></textarea> <br>
<input type="submit" name="">
</form>
</body>
</html>