-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
44 lines (37 loc) · 1.22 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Library, Homepage</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/ddsmoothmenu.css" rel="stylesheet" type="text/css">
<script src="js/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<div id="top_wrapper">
<div id="top">
<div id="site_title">
<h1><a href="index.php">Library</a></h1>
</div>
<div class="ddsmoothmenu" id="menu">
<ul>
<li>
<a href="browse.php">Browse</a>
</li>
<li>
<a href="register.php">Register</a>
</li>
<li>
<a href="contact.php">Contact</a>
</li>
<li>
<a href="viewreserved.php">Reserved</a>
</li>
<li>
<a href="logout.php">Login/Logout</a>
</li>
</ul><br style="clear: left">
</div><!-- end of menu -->
</div><!-- end of top -->
</div><!-- end of top wrapper -->
</body>
</html>