-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind Student.html
46 lines (45 loc) · 1.33 KB
/
Find Student.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
<!doctype html>
<html>
<head>
<meta http-equiv="content-Type" content="text/html; charset=utf-8"/>
<title>Find Student</title>
<link href="styles2.css" rel="stylesheet" type="text/css">
<script src="jquery-3.6.1.js"></script>
<script src="FindStudent.js"></script>
</head>
<body>
<a href="Home.html">⬅️Go Back</a>
<p> </p>
<h1>Find a Student</h1>
<hr>
<p> </p>
<p> </p>
<p>
<label for="search">Student ID:</label>
<input type="search" name="search" id="search1">
</p>
<p>
<label for="search2">Student Name:</label>
<input type="search" name="search2" id="search2">
</p>
<p>
<label for="search3">Registered Center:</label>
<input type="search" name="search3" id="search3">
</p>
<p>
<label for="search4">Registered Semester:</label>
<input type="search" name="search4" id="search4">
</p>
<p>
<label for="search5">CGPA:</label>
<input type="search" name="search5" id="search5">
</p>
<p>
<input type="button" name="searchID" id="searchID" value="Search by ID">
<input type="button" name="searchName" id="searchName" value="Search by Name">
<input type="button" name="searchCenter" id="searchCenter" value="Search by Center">
<input type="button" name="searchSemester" id="searchSemester" value="Search by Semester">
<input type="button" name="searchCGPA" id="searchCGPA" value="Search by">
</p>
</body>
</html>