-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform(tags).html
More file actions
62 lines (49 loc) · 1.21 KB
/
form(tags).html
File metadata and controls
62 lines (49 loc) · 1.21 KB
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
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> select,option and label tag </title>
</head>
<body>
<form id="form" method="get" action="action_page.php"
accept-charset="UTF-8" autocomplete="off" novalidate="novalidate" target="_blank"
oninput="x.value=parseInt(a.value)+parseInt(b.value)">
First name:<br/>
<input type="text" name="firstname"
value="vinod" />
<br/>
Last name:<br/>
<input type="text" name="lastname"
value="kumar" />
<br/><br/>
<button type="submit" name="subject"
value="submit" > submit </button>
<button type="reset" name="subject"
value="submit" > reset </button>
<button type="button" name="subject"
value="submit" > click button </button>
<br><br>
<!--- datalist tag -->
<input list="browser" >
<datalist id="browser" >
<option value="IE" />
<option value="Crome" />
<option value="Opera" />
</datalist>
<br><br><br>
<!-- keygen tag -->
User name:<br>
<input type="text" value="vinod" name="username" />
<br>
Encryption:
<keygen name="security" >
<br>
<input type="submit" value="submit" />
<br><br><br>
<!-- output tag -->
0<input type="range" id="a" value="50">100
+<input type="number" id="b" value="50">
=<output name="x" for="a b"></output>
</form>
</body>
</html>