-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputs.html
31 lines (30 loc) · 866 Bytes
/
inputs.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>Input By User</title>
</head>
<body>
<form class="" action="index.html" method="post">
<label>Your Name:</label>
<input type="text" name="" value="">
<input type="color" name="" value="">
<br>
<br>
<label for="">password: </label>
<input type="password" name="" value="">
<br>
<label>Do you want to send additional data for better experiance:</label>
<input type="checkbox" name="" value="">
<input type="submit" name="">
<br>
<input type="file" name="" value="">
<br>
<input type="date" name="" value="">
<br>
<input type="radio" name="" value="">
<br>
<input type="range" name="" value="">
</form>
</body>
</html>