-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPPLICATION.html
More file actions
147 lines (108 loc) · 4.09 KB
/
Copy pathAPPLICATION.html
File metadata and controls
147 lines (108 loc) · 4.09 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<html>
<head>
<title> APPLICATION FORM </title>
<style>
ul{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
background-color:yellow;
}
li{
float:left;
}
li a{
color:blue;
display:block;
text-align:center;
padding:16px;
text-decoration:none;
}
li a:hover{
background-color:red;
}
body
{
background-color:#07E4C9;
}
</style>
</head>
<body>
<h1 align="center"><marquee> JUMAIL COLLEGE OF EDUCATION </marquee> </h1>
<hr>
<ul align="center">
<li> <a href="HOME.html">HOME</a></li>
<li> <a href="APPLICATION.html">APPLICATION FORM</a></li>
<li> <a href="TIME TABLE.html">TIME TABLE</a></li>
<li> <a href="BILL PAYMENT.html"> BILL PAYMENT</a></li>
</ul>
<br>
<center>
<table border ="6" bgcolor="pink" width="50%" height="30%">
<tr>
<td align="center">
<br>
<H1><font color="red"><u> APPLICATION FORM </u></font></H1><br>
<form name="form1" action="url of CGI" method="get">
<font color="Blue">
First Name :
<input type="text" name="First name" size="20" maxlength="15"><br><br>
Last Name :
<input type="text" name="Last name" size="20" maxlength="15"><br><br>
Address :
<input type="text" name="Address" size="20" maxlength="15"><br><br>
Phone Number :
<input type="text" name="Phone number" size="20" maxlength="15"><br><br>
Addmission no :
<input type="text" name="Addmission no" size="20" maxlength="15"><br><br>
Password :
<input type="password" name="password" size="20" maxlength="15"><br><br>
<font color="black">Select Country:</font><br><br>
Sri Lanka:<input type="checkbox" name="country" value="sri"><br><br>
United Kingdom:<input type="checkbox" name="country" value="uk"><br><br>
France:<input type="checkbox" name="country" value="frnce"><br><br>
<font color="black">Select Gender:</font><br><br>
Male<input type="radio" name="choice" value="male" checked><br><br>
Female<input type="radio" name="choice" value="female"><br><br>
<font color="black">Select Subject That You Study:</font><br><br>
<select name="subject" size="4" "multiple">
<option>Maths</option>
<option>Science</option>
<option>English</option>
<option>History</option>
<option>Phicycs</option>
</select><br><br>
<font color="black">Select Subject That You Study:</font><br><br>
<select name="subject" size="1" "multiple">
<option>Maths</option>
<option>Science</option>
<option>History</option>
<option>Phicycs</option>
<option>English</option>
</select><br><br>
<font color="black">Select Subject That You Study:</font><br><br>
<select name="subject" size="6" "multiple">
<option>Maths</option>
<option>Science</option>
<option>History</option>
<option>English</option>
<option>Phicycs</option>
</select><br><br>
<h3>Text Area</h3>
<textarea cols="30" rows="20" name="comments">
Type Here....
</textarea><br><br>
<br>
<input type="submit" name="Submitl" value="Submit Data">
<br>
<input type="Reset" name="Resetl" value="Reset"><br>
<h2 style="color:#990066; font-family:pacifico regular; font-size:300%; font-style:oblique; text-align:center">THANK YOU</h2>
<h3 style="color:#000099; font-family:bd merced; font-size:150%; font-style:italic; text-align:center">JUMAIL.WM</h3>
</form>
</td>
</tr>
</table>
</center>
</body>
</html>