-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.html
24 lines (23 loc) · 901 Bytes
/
header.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Course System</title>
<link rel="stylesheet" type="text/css" media="screen" href="/css/stylesheet.css" />
<script src="/js/script.js"></script>
</head>
<header>
<div id='menu'>
<ul>
<li><a href="/home.php">Home</a></li>
<li> | </li>
<li><a href="/courses/all_courses.php">Courses</a></li>
<li><a href="/courseworks/all_courseworks.php">Courseworks</a></li>
<li><a href="/students/all_students.php">Students</a></li>
<li><a href="/submissions/all_submissions.php">Submissions</a></li>
</ul>
</div>
</header>
<hr>