-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvaliditycheck.html
More file actions
60 lines (52 loc) · 1.74 KB
/
validitycheck.html
File metadata and controls
60 lines (52 loc) · 1.74 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
<html><head>
<title>Vocational Training centre application</title>
<link rel="stylesheet" type="text/css" href="css/validation_check.css">
</head>
<body>
<div class ="validation">
<div class ="headerpart">
<h1 align="center"><marquee direction="left"><font face="Algerian">Vocational Training Institute</h1><br><br><h2>Validation Checking</h2></font></marquee>
</div>
<div class="bodypart"><font face="Tahoma" color="SkyBlue">
<div class="NIC">
<h2 align="center">NIC Number Validity Check</h2>
<ul>
<li>NIC Number :<input type="text" name="nic"></li><br><br>
<button onclick="function1()" style="color:MidnightBlue;border-radius:10px;background:LightGrey;">Next ></button>
<script>
var mywindow
function function1(){
mywindow=window.open("file:///C:/Users/U%20s%20E%20r%20%E2%84%A2/Desktop/vtc/Nic%20detail/nicdetails.html");
}
</script>
</div>
<div class="Examresults">
<h2 align="center">Examination Results Check</h2>
<ul>
<li>Year :
<select>
<option value= "1" >2010</option>
<option value= "2" >2011</option>
<option value= "3" >2012</option>
<option value= "4" >2013</option>
<option value= "5" >2014</option>
<option value= "6" >2015</option>
<option value= "7" >2016</option>
<option value= "8" selected >2017</option>
</select></li><br><br>
<li>Examination :
<select>
<option value= "1" >GCE O/L</option>
<option value= "2" selected >GCE A/L</option>
</select></li><br><br>
<li>Index Number :<input type="text" name="ind"></li><br><br>
<button onclick="function2()" style="color:MidnightBlue;border-radius:10px;background:LightGrey;">Next ></button>
<script>
var mywindow
function function2(){
mywindow=window.open("file:///C:/Users/U%20s%20E%20r%20%E2%84%A2/Desktop/vtc/results%20detail/resultdetail.html");
}
</script>
</div>
</div></font>
</div></body></html>