-
Notifications
You must be signed in to change notification settings - Fork 0
/
json.html
90 lines (62 loc) · 2.78 KB
/
json.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<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>
<style>
body{background-color: rgb(42, 170, 209);}
span{font-family: verdana;
font-size: 20px;
}
</style>
</head>
<body>
<br>
<p style="margin: 20px;">this is forms tutorial</p>
<form action="backend.txt">
<br>
<span> Name* :<input type="text" required name="myname"> </span>
<span> Role* :<input type="text" required name="Role"> </span>
<span> email* : <input type="email" required name="myma"></span>
age* : <input type="number" required name="age">
date of birth:<input type="date" name="date of birth" id=""><br><br>
scholaship *:<input type="number" name="" id="amount"><br><br>
<span>date : <input type="date" name="date"></span>
<span> gender : <input type="radio" required checked="checked" name="gender">male <input type="radio"
name="gender">female<input type="radio" name="gender">other</span>  
date : <input type="date" name="date">
password*: <input type="text" required value="">
</div>
our logo :<img src="https://media.licdn.com/dms/image/C560BAQEBmVVLfZtSdQ/company-logo_200_200/0/1602173507066?e=1690416000&v=beta&t=WCSA7TEQWe5DZmB7dr5ZzSW0bu36AmP39Gl2MWLKyy0"
width="40" height="40" alt="h"></div>
<div style="margin: 20px;"></div>
ce
fav item :
<input type="hidden">
<select>
<option>chappal</option>
<option selected>shoes</option>
<option>tshirts</option>
<option>laptop</option>
</select>
car you own :
<input type="hidden">
<select>
<option>ind ica</option>
<option>hay er</option>
<option sel ected>kia</option>
<option>au di</option>
</select><br><b r>
<button style=" background-color: aqua;" >Click me</button><br>
<button style=" border: 4px solid red ;" id="34" >Click me </button>
comments:<br> <textarea name="comments" id="6789" cols="30" rows="10"></textarea><br>
<center>
agree to terms and conditions : <input type="checkbox" name="agreed">
<input type="submit" value=" ssubmit now">
<input type="reset" value="reset now">
</center>
</form>
</body>
</html>