-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
107 lines (97 loc) · 4.52 KB
/
form.html
File metadata and controls
107 lines (97 loc) · 4.52 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creating Form</title>
</head>
<body>
<h1>
<font color=blue>
<center>Please enter the following BoiData</center>
</font>
</h1>
<form name="fome 1" method="get" Action="URL">
First Name:<Input Type="text" name="=fname" size="15" maxlength="25"><br>
Last Name:<Input Type="text" name="lname" size="15" maxlength="25"><br>
Nationality: <Input Type="text" name="country" size="25" maxlength="25"><br>
Phone Number:<Input Type="text" name="phone" size="12" maxlength="12"><br>
Password:<input type="password" name="password" size="10" maxlength="6"><br>
</form>
<h1>
<font color=green>Please chek one of the following</font>
</h1>
<form name="fome3" action="url" method="get">
<font color="green" size="6"> Select Country:</font><br>
Jordan:<input type="checkbox" name="country" checked><br>
Yemen:<input type="checkbox" name="country"><br>
India:<input type="checkbox" name="country"><br>
<br>
<font colour blue </form>
<form name="fome3" action="url" method="get">
<font color="green"> Select Country:</font><br>
Jordan:<input type="radio" name="country" checked><br>
Yemen:<input type="radio" name="country"><br>
India:<input type="radio" name="country"><br>
<br>
</form>
<hr size="2">
<div align="center">
<h1>About Baby</h1><br>
<form>
<FONT COLOR="green">press here to see baby shouting :<br>
<input type="button" value="press me">
<br><br>
<FONT COLOR="BLUE">click here to see baby playing :<br>
<input type="button" value="click me">
<br><br>
<FONT COLOR="red">hit here to see baby eating :<br>
<input type="button" value="hit me">
<br><br>
</form>
<form action="url" method="get">
First Name:<Input Type="Text" size="25" name="firstname"><br>
Last Name:<input type="text" size="25" name="lastname"><br>
<br>
<input type="submit" value="submit"><br>
<font color="red">press here for reset <br>
<Input Type="reset" value="Reset"><br>
<font color="blue">
click here to go india:<input type="img">
<image src="images.png" width="104" height="50">
</form>
<form>
<h3>
<font color=forestgreen>please attatch your file here for uploading to
my <font color="red">Server...<br>
<input typ="file" name="my file" size="30">
<input type="submit" value="submitfile">
</form>
<form action="">
<testarea cols="40 " rows="20" Name="comments">
from observing the apathy of those about me during flag raising i concluded that patriotism if
not
actually on the decline is atleast in state of dormancy.<br>
</testarea>
<font color="black">
select the cities you have visited:</font>
<select name="list" size="3">
<option>Delhi</option>
<option>Agra</option>
<option>bombay</option>
<option>hyderabad</option>
<option>masoori</option>
</select>
</form>
What type of computer do you have<br>
<form>
<Select Name="Computer Type" size="3">
<option value="ibm" selected>ibm</option>
<option value="dell">dell</option>
<option value="lenevo">lenevo</option>
<option value="apple">apple</option>
<option value="other">other</option>
</Select>
</div>
</body>
</html>