-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
31 lines (31 loc) · 1.01 KB
/
contact.html
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 lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h2>Contact Details</h2>
<ul>
<li>Mobile no. : 8840254948</li>
<li>Email Id : vermavishesh@023gmail.com</li>
</ul>
<form action="mailto:viper14367@gmail.com" method="post" enctype="text/plain" >
<label>Your Name:</label>
<input type="text" name="Your name" id=""><br>
<label>Your email:</label>
<input type="email" name="Your email" id=""><br>
<label >Your </label>
<label for="">Password:</label>
<input type="password" name="" id=""><br>
<label>Your Message</label>
<textarea name="Your Message" id="" cols="30" rows="10"></textarea>
<input type="checkbox" name="" id="">
<input type="submit" name="" id="">
<br>
<label>Files</label>
<input type="file" name="" id="">
<!--<input type="range" name="" id="">!-->
</form>
</body>
</html>