-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputs.html
33 lines (33 loc) · 1.41 KB
/
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
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>input types demo</title>
</head>
<body>
<input type="button" value="input button"><br>
<input type="checkbox" name="checkbox demo" id=""><br>
<input type="color" name="color demo" id=""><br>
<input type="date" name="date demo" id=""><br>
<input type="datetime" name="date time demo" id=""><br>
<input type="datetime-local" name="date time demo" id=""><br>
<input type="email" name="email demo" id=""><br>
<input type="file" name="file demo" id=""><br>
<input type="hidden" name="hidden demo"><br>
<input type="image" src="" alt="my-image"><br>
<input type="month" name="month demo" id=""><br>
<input type="number" name="number demo" id=""><br>
<input type="password" name="password demo" id=""><br>
<input type="radio" name="radio demo" id=""><br>
<input type="range" name="range demo" id=""><br>
<input type="reset" value="Reset Demo"><br>
<input type="search" name="Serach Demo" id=""><br>
<input type="submit" value="submit Demo"><br>
<input type="tel" name="telephone Demo" id=""><br>
<input type="text" name="input text demo" id=""><br>
<input type="time" name="time demo" id=""><br>
<input type="url" name="url demo" id=""><br>
<input type="week" name="week demo" id=""><br>
</body>
</html>