-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjournalsearch.html
More file actions
73 lines (53 loc) · 1.56 KB
/
journalsearch.html
File metadata and controls
73 lines (53 loc) · 1.56 KB
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
</html>
<head>
<link rel = "stylesheet" href = "css/adminhpage.css">
</head>
<body>
<style>
body{
<!-->background-image: url('blue.jpg');
background-repeat: no-repeat;
background-position: center;
background-origin: content-box;<-->
}
</style>
<script src = "js/logout.js"></script>
<div class="topnav" id="myTopnav">
<a href="admin.html" id = "home">Home</a>
<a href="loginpage.html">Logout</a>
<div class="dropdown">
<button class="dropbtn">Book Search
</button>
<div class="dropdown-content">
<a href="simplesearch.html">Simple Search</a>
<a href="advancedsearch.html">Advanced Search</a>
<a href="addbook.html">Add Book</a>
<a href="removebook.html">Remove Book</a>
</div>
</div>
<div class="dropdown">
<button class="activebtn">Journal
</button>
<div class="dropdown-content">
<a href="journalsearch.html" class="active">Journal Search</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Public Website
</button>
<div class="dropdown-content">
<a href="websitelist.html">Website List</a>
<a href="websitesearch.html">Website search</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Database Websites
</button>
<div class="dropdown-content">
<a href="databaselist.html">Database List</a>
<a href="databasesearch.html">Database Search</a>
</div>
</div>
</div>
</body>
</html>