-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
31 lines (31 loc) · 1.13 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" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form action="index.html", method="post", enctype="text/plain">
<label for="user">Username:</label>
<input type="text" name="user" value="", id ="user"><br><br>
<label for="emailid">EmailId:</label>
<input type="email" name="emailid" value="", id = "emailid"><br><br>
<!--
<label for="">checkbox:</label>
<input type="checkbox" name="" value=""><br><br>
<label for="">color:</label>
<input type="color" name="" value=""><br><br>
<label for="">password:</label>
<input type="password" name="" value=""><br><br>
<label for="">range:</label>
<input type="range" name="" value=""><br><br>
<label for="">date:</label>
<input type="date" name="" value=""><br><br>
<label for="">radio:</label>
<input type="radio" name="" value=""><br><br>
-->
<textarea name="message" rows="10" cols="80"></textarea><br><br>
<button type="submit" name="button">Submit</button>
</form>
</body>
</html>