-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinputs.html
More file actions
23 lines (23 loc) · 804 Bytes
/
inputs.html
File metadata and controls
23 lines (23 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form class="" action="index.html" method="post">
<input type="text" name="" value=""><br>
<input type="button" name="" value=""><br>
<input type="checkbox" name="" value=""><br>
<input type="submit" name="" value=""><br>
<input type="date" name="" value=""><br>
<input type="range" name="" value=""><br>
<input type="radio" name="" value=""><br>
<input type="time" name="" value=""><br>
<input type="week" name="" value=""><br>
<input type="file" name="" value=""><br>
<input type="month" name="" value=""><br>
<input type="submit" name="" value="Submit">
</form>
</body>
</html>