-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsearchform1.html
84 lines (70 loc) · 2 KB
/
searchform1.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style1.css">
<link rel="stylesheet" type="text/css" href="style2.css">
<link rel="stylesheet" type="text/css" href="style3.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<style>
input[type=text], select {
width: 50%;
padding: 12px 20px;
margin: 24px 9px;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type=submit] {
width: 34%;
background-color: rgb(14, 172, 235);
color: white;
padding: 13px 29px;
margin: 17px 385px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: rgb(14, 172, 235);
}
div {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
</style>
</head>
<body>
<center>
<h2>
<div class="heading">Student Management System</div>
</h2>
</center>
<ul>
<li><a class="active" href="index.html">Home</a></li>
<!--<li><a href="#contact">Contact</a></li>-->
<li><a href="searchmodifydelet.html"><--Back</a></li>
<li><a href="view.php">View</a></li>
<li style="float:right"><a href="contact.html">About</a></li>
</ul>
<br>
<center>
<div class="heading">SEARCH STUDENT DETAILS</div>
<div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<form action="indexsearch.php"method="post" name="web_form" id="web_form">
<b> <label for="fname"class="heading">SEARCH:</label></b>
<input type="text" id="fname" name="search" placeholder="Enter your application number....." required>
<center><input type="submit" value="Submit"></center>
</form>
</div>
</body>
</html>