-
Notifications
You must be signed in to change notification settings - Fork 9
/
Forms and use of Input tags in html.html
71 lines (64 loc) · 1.49 KB
/
Forms and use of Input tags in html.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
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms</title>
</head>
<body>
<h2>This is HTML Forms</h2>
<form action="adil.php">
<!--in that you have to provide backend link where you
can save data there -->
<label for="name">Name</label>
<div>
<input type="text" name="myname" id="name">
</div>
<br>
<div>
Role: <input type="text" name="myRole">
</div>
<br>
<div>
Email: <input type="email" name="myemail" id="">
</div>
<br>
<div>
Date: <input type="date" name="" id="">
</div>
<br>
<div>
Bonus: <input type="number" name="my Bonus" id="">
</div>
<br>
<div>
Are you Eligible: <input type="checkbox" name="Eligibility" id="">
</div>
<br>
<div>
Gender: Male<input type="radio" name="mygender" id=""> Female <input type="radio" name="mygender" id="">
Other <input type="radio" name="mygender" id="">
</div>
<div>
write about yourself:
<br>
<textarea name="write" id="" cols="30" rows="10"></textarea>
</div>
<div>
<label for="car">Car</label>
<select name="Mycar" id="car">
<option value="civ">Civic</option>
<option value="cit">City</option>
</select>
</div>
<br>
<div>
<input type="submit" value="Submit Now">
<input type="reset" value="Reset Now">
</div>
</select>
</div>
</form>
</body>
</html>