-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
33 lines (32 loc) · 903 Bytes
/
contacts.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
32
33
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Details</title>
</head>
<body><h1>My Contacts</h1>
<ul>
<li>8810646994</li>
<li>8802322655</li>
<li>jhadivyangana@gmail.com</a></li>
</ul>
<hr>
<form action="mailto:support@swiggy.in" method="post"enctype="text/plain">
<label> Your Name:</label>
<input type="text" name="YourName" value="">
<br>
<label>Do you like our site?</label>
<input type="checkbox" name="" value="">
<br>
<label>Password:</label>
<input type="password" name="" value="">
<input type="radio" name="" value="">
<input type="range" name="" value="">
<label>Email</label>
<input type="email" name="" value=""><br>
<label>Your Message</label>
<textarea name="name" rows="8" cols="30"></textarea>
<input type="submit" name="" >
</form>
</body>
</html>