-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq11.html
60 lines (60 loc) · 1.37 KB
/
q11.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!-- 10) Create an HTML page, which should contain all types of input elements. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Input types</title>
</head>
<body>
<center>
<h1>Html Input Types</h1>
Text:<input type="text" />
<br />
password:<input type="password"/>
<br />
Number:<input type="number"/>
<br />
Checkbox:<input type="checkbox"/>
<br />
color:<input type="color"/>
<br/>
Date:<input type="date"/>
<br />
DateTime:<input type="datetime"/>
<br />
Time:<input type="time"/>
<br />
Search:<input type="search"/>
<br />
File:<input type="file"/>
<br />
Range:<input type="range"/>
<br />
Radio:<input type="radio"/>
<br />
Button:<input type="button"/>
<br />
Submit:<input type="submit"/>
<br />
Reset:<input type="reset"/>
<br />
E-mail:<input type="email"/>
<br />
Hidden:<input type="hidden"/>
<br />
Datetime_local<input type="datetime-local"/>
<br />
Image:<input type="image"/>
<br />
Month:<input type="month"/>
<br />
Tel:<input type="tel"/>
<br />
Url:<input type="url"/>
<br />
week:<input type="week"/>
<br />
</center>
</body>
</html>