-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
31 lines (26 loc) · 952 Bytes
/
Copy pathcontact.html
File metadata and controls
31 lines (26 loc) · 952 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
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact</title>
</head>
<body>
<h1>My Contact Details</h1>
<p>My Email-Address: shantnoobansod24@gmail.com</p>
<p>Phone: +918805579892</p>
<form action="mailto:abhijeet.viper@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="yourname" value=""><br>
<!-- <label >Password:</label>
<input type="password" name="" value=""><br> -->
<!-- <label>Date of birth:</label> -->
<!-- <input type="datetime-local" name="" value=""><br> -->
<label>Email:</label>
<input type="email" name="youremail" value=""><br>
<label>Message:</label></label>
<textarea name="yourMessage" rows="10" cols="10"></textarea><br>
<!-- <input type="file" accept=".pdf" name="file" value="" multiple> -->
<input type="submit" name="" >
</form>
</body>
</html>