-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (42 loc) · 2.02 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LMS | HOME</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<!------------------------------------------------Basic layout------------------------------------------------------------------------------------>
<div id="div1">
<h1> <img src="favicon.ico" alt="icon" height="25px" width="25px"> Library Management System </h1>
</div>
<div class="nav-buttons">
<ul>
<li><a class="active" href="./index.html">Home</a></li>
<li><a href="./customer.html">Customer</a></li>
<li><a href="./employee.html">Employee</a></li>
<li style="float: right;"><a href="./admin.html">Admin Panel</a></li>
</ul>
</div>
<!------------------------------------------------Basic layout------------------------------------------------------------------------------------>
<!----------------------------------------------PAGE SPECIFIC HTML CODE--------------------------------------------------------------------------->
<div class="flex-container1">
<div class="left-panel">
<ul>
<li><a href="#branch">Branches</a></li>
<li><a href="#books">Books</a></li>
<li><a href="./customer.html">Customer Login</a></li>
<li><a href="./employee.html">Employee Login</a></li>
<li><a href="./admin.html">Admin Panel</a></li>
</ul>
</div>
<div class="right-panel">
<p>HI! THERE - HOME</p>
</div>
</div>
<!----------------------------------------------PAGE SPECIFIC HTML CODE--------------------------------------------------------------------------->
<footer>Copyright@2020 - LMSG</footer>
</body>
</html>