-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheirth.html
100 lines (89 loc) · 2.69 KB
/
eirth.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
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<title> html form</title>
</head>
<body>
<form method="GET/POST " action="submit.php">
<div style="border: 100px">
Name:
<input type="text">
</div>
<br>
<br>
<br>
<br>
<br>
<input type="submit" value="submit">
<div>
<input type="color" name="jatin" id="">
<input type="submit" value="chal ja abb yaha se">
</div>
<br><br><br>
<div>
Enter date:
<input type="date">
<br>
<br>
<br>
<br>
Enter date and time:
<input type="datetime-local">
<input type="submit">
Enter time:
<input type="time">
<input type="submit">
</div>
<br>
<br>
<br>
<div>
<form action="">
Enter the email:
<input type="email" maxlength="30" size="77" required>
<input type="submit">
<input type="reset" value="jatin clear kar bhai">
</form>
<form action="">
<div>
<input type="text" value="jatin kartik tyagi" disabled size="100" maxlength="20">
</div>
</form>
</div>
<div>
hidden:
<input type="hidden" name="" id="">
</div>
<div>
Enter a number or age:
<input type="number" min="44" max="1199" placeholder="enter the number" step="4" required >
<input type="submit" value="Go">
</div>
<div>
Enter the password:
<input type="password" placeholder="enter your password" size="99" required autocomplete="yes">
<input type="submit">
</div>
<div>
Enter the range:
<input type="range" min="500" max="100000">
</div>
<div>
Select file:
<input type="file">
</div>
</form>
<form action="">
<div>
<input type="file" multiple>
</div>
ENTER THE HTML TEXGT AREA :
<textarea name="jatin kartik" id="#local" cols="90" rows="30" placeholder="ENTER YOU FEEDBACK HERE" autofocus> HELLO BROTHER HOW ARE YOU</textarea>
<input type="image" src="F:\work image\woman-shh-half-face-978x413.jpg" width="100" height="55">
</form>
</body>
</html>