-
Notifications
You must be signed in to change notification settings - Fork 8
/
header.php
51 lines (40 loc) · 1.23 KB
/
header.php
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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<title>Student Information System</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link href="styles/print/main.css" rel="stylesheet" type="text/css" media="print">
<script type="text/javascript">
function Openeditcourse(a)
{
var links = "courseinsert.php?slid=" + a + "&view=course";
var ReturnedValue = showModalDialog(links,"Passed String","dialogWidth:450px; dialogHeight:400px; status:no; center:yes");
//alert("Modal Dialog returned '" + ReturnValued + "'");
}
</script>
</head>
<body>
<!-- /**
* @System HP-pc Rax
* @author Rakshit shah <Rakshitshah1994@gmail.com>
* @copyright 2015-2017 |Rakshit shah
* @license http://rakshit.in/license/license.php | PHP License 3.0
* @version 1.1
* @since File available since Release 1.0.0
*/
-->
<div id="wrap">
<section id="top">
<nav id="mainnav">
<h1 id="sitename" class="logotext">
<a href="index.php">G.I.T.</a>
</h1>
<ul>
<li class="active"><a href="index.php"><span>Home</span></a></li>
<li><a href="viewresult.php"><span>STUDENTS</span></a></li>
<li><a href="admin.php"><span>admin</span></a></li>
<li><a href="contact.php"><span>cONTACT-US</span></a></li>
</ul>
</nav>
</section>