-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk8.html
69 lines (62 loc) · 1.82 KB
/
k8.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
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
FORM
</title>
</head>
<body>
<H3>Forms Tutorial</H3>
<form action=" storage action">
<label for="name"> Name:</label>
<div>
<input type="text" name="My Name" id="name">
</div>
<br>
<label for="name1">SirName:</label>
<div>
<input type="text" name="My SirName" id="name1">
</div>
<br>
<label for="Age1">Age:</label>
<div>
<input type="text" name="My Age" id="Age1">
</div>
<br>
<label for="Email1">Email:</label>
<div>
<input type="email" name="MyEmail" id="Email1">
</div>
<br>
<div>
<input type="date" name="" id="">
</div>
<div>
<input type="number" name="" id="">
</div>
<div>
Age : Male<input type="checkbox" name=" AGE" checked>
</div>
<div>
SEX: Male <input type="radio" value="Mygender">FeMale <input type="radio" value="Mygender">
Other <input type="radio" value="Mygender">
</div>
<div>
Comments <br><textarea name="MyText" cols="60" rows="5"></textarea>
</div>
<label for="Food1"> FOOD:</label>
<select name="Food" id="Food1">
<option value="Paav Bhaji">Paav Bhaji</option>
<option value="Panner" selected>Panner</option>
</select>
<div>
<input type="submit">
</div>
<div>
<input type="reset" value="Reset Now">
</div>
</form>
</body>
</html>