-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.08 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head >
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="CSS/main.css">
<title>Library Management System</title>
</head>
<body>
<!--header-->
<header>
<div>
<a href="index.html" class="logo">University of PontyBridge</a>
</div>
<div>
<input type="checkbox" class="toggler" id="toggler">
<label class="menu-icon" for="toggler"><span class="nav-icon"></span></label>
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="html/users.html">Users</a></li>
<li><a href="html/books.html">Books</a></li>
<li><a href="html/loans.html">Loans</a></li>
</ul>
</div>
</header>
<!-- welcome interface-->
<div class="welcome">
<h1>Welcome to the Library System</h1>
<ul class="link">
<li><a href="html/books.html">Books</a></li>
<li><a href="html/loans.html">Loans</a></li>
<li><a href="html/users.html">Users</a></li>
</ul>
</div>
</body>
</html>