-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
80 lines (74 loc) · 2.2 KB
/
forms.html
File metadata and controls
80 lines (74 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
my new form </title>
</head>
<body>
<h2> My new HTML form </h2>
<form action="ashvin.js/"></form>
<label for="Name">Name</label>
<div>
<input type="text" name="myname" id="Name">
</div>
<br>
<label for="Hobey"> Hobey </label>
<div>
<input type="text" name="myHobey" id="Hobey">
</div>
<br>
<label for=" en number">En number</label>
<div>
<input type="number" name="mynumber" id="en number">
</div>
<br>
<label for="date"> Date </label>
<div>
<input type="date" name="mydate" id="Date">
</div>
<br>
<label for="email">Email</label>
<div>
<input type="text" name="myemail" id="Email">
</div>
<br>
<label for="bouns">Bouns</label>
<div>
<input type="number" name="mybouns" id="Bouns">
</div>
<br>
<label for="car">care</label>
<input name="mycare" id="car">
<select name="my name" id="car">
<option value="swi">swi</option>
<option value="suzuki">suzuki</option>
<option value="hounda">hounday</option>
<option value="hunday">hondau</option>
</select>
<br><label for="are you eligible"> Are you eligible?</label>
<div>
<input type="checkbox" name="myeligible" id=" Are you eligible?">
</div>
<br>
<label for="gendet">Gender</label>
<div>
male <input type="radio" name="mygender" id="Gender"> female <input type="radio" name="mygender" id="Gender"> otheer <input
type="radio" name="mygender" id="Gender">
</div>
<br>
<label for="Write about your self :">Write about your self :</label>
<div>
<br><textarea name="text" cols="30" rows="10" id="Write about your self :"></textarea>
</div>
<br>
<label for="submit"> Submit </labelt>
<label for="reset"> Reset </label>
<div>
<input type="submit" name="submit now" id="Submit">
<input type="reset" name="reset now" id="Reset" >
</div>
<br>
</body>
</html>