-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html.html
More file actions
99 lines (84 loc) · 1.87 KB
/
Copy pathform.html.html
File metadata and controls
99 lines (84 loc) · 1.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>FORM</title>
</head>
<body>
<form id="myform">
<fieldset>
<legend>login page</legend>
<labelfor="fname">First Name:</label>
<input type ="text"placeholder="type your first name" name="fname"><br><br>
<input type="submit">
<br><br>
<p>Lorem</p>
<labelfor="lname">Last Name:</label>
<input type ="text"palceholder="type your last name" name="lname"form="myform"><br><br>
<labelfor="pwd">Password:</label>
<input type="password" id="pwd" name="pwd"><br>
<br>
</fieldset>
<br>
<fieldset>
<legend>textarea</legend>
<textarea name="feedback" row"10" column"20">give your feeedback here
</textarea>
</fieldset>
<br>
<fieldset>
<legend>dropdown</legend>
<select>
<option>good</option>
<option selected > better</option>
<option>best</option>
</select>
</fieldset>
<br>
<fieldset>
<input list="person">
<datalist id ="person">
<option>good</option>
<option>better</option>
<option>best</option>
</fieldset>
<br>
<fieldset>
<legend>checkboxes</legend>
<input type ="checkbox" name="checkbox" checked>good</br>
<input type="checkbox">better</br>
<input type="checkbox">best</br>
<br>
<input type="radio"name="radio">good</br>
<input type="radio"name="radio">better</br>
<input type="radio"name="radio">best</br>
<br>
<br>
<input type="button" value="click to submit">-->normal button<br>
<input type="color"><br><br>
<input type="date"><br><br>
<input type ="datetime"><br><br>
<input type="month"><br><br>
<input type="week"><br>
<br>
<input type="email"><br><br>
<input type="file"image/*,audio/*,video/*><br>
<br>
<input type="image" src="pic.png" width="50" height="50"<br>
<br>
<input type="number" step="3">number field<br>
<br>
<input type="range"<br>
<br>
<input type="reset"><br>
<br>
<input type="search"a>search field<br>
<br>
<input type ="tel"> telephone<br>
<br>
<input type ="url">url<br>
<br>
<br>
</fieldset>
</form>
</body>
</html>