-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path14_Forms part-1.html
More file actions
31 lines (28 loc) · 1.01 KB
/
14_Forms part-1.html
File metadata and controls
31 lines (28 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms in HTML</title>
</head>
<body>
<h2>Forms</h2>
<form action="">
text box: <input type="text"><br><br>
password box: <input type="password"><br><br>
<input type="checkbox">i agree<br><br>
gender <input type="radio" name="g">male <input type="radio" name="g">female<br><br>
<input type="button" value="this is button"><br><br>
<input type="color"><br><br>
DOB <input type="date"><br><br>
DOB <input type="datetime-local"><br><br>
DOM <input type="month"><br><br>
number <input type="number"><br><br>
Email <input type="email"><br><br>
Upload your CV <input type="file"><br><br>
range <input type="range" min="0" max="20"><br><br>
<input type="submit">
<input type="reset"><br><br>
</form>
</body>
</html>