-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.html
35 lines (34 loc) · 1.01 KB
/
input.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
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<input type="button" value="Button"><br>
<input type="checkbox"><br>
<input type="color" name="" id=""><br>
<input type="date"><br>
<input type="datetime-local"><br>
<input type="email" multiple=""><br>
<input type="file"><br>
<input type="hidden"><br>
<input type="image" src="download.jfif"><br>
<input type="month"><br>
<input type="number"><br>
<input type="password"><br>
<input type="radio"><br>
<input type="range"><br>
<input type="reset" ><br>
<input type="search"><br>
<input type="submit"><br>
<input type="tel"><br>
<input type="text"><br>
<input type="time"><br>
<input type="url"><br>
<input type="week"><br>
<input type="datetime">
</body>
</html>