-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq11.html
More file actions
29 lines (29 loc) · 935 Bytes
/
q11.html
File metadata and controls
29 lines (29 loc) · 935 Bytes
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
<!-- 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>Html</title>
</head>
<body>
Name:<input type="text" placeholder="Enter your name" /><br>
<br>
Age:<input type="text" placeholder="Enter your age" /><br>
<br>
Mobileno:<input type="number" /><br>
<br>
<input type="checkbox" /><br>
<input type="color" /><br>
<input type="date" /><br>
<input type="datetime" /><br>
<input type="time" /><br>
<input type="search" /><br>
<input type="file" /><br>
<input type="range" /><br>
<input type="radio" /><br>
<input type="button" /><br>
<input type="submit" /><br>
<input type="reset" /><br>
</body>
</html>