forked from vikassinghv34/Book_publish_Management_System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
112 lines (97 loc) · 4.38 KB
/
footer.php
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<footer class="text-center text-lg-start" style="background-color: #2d2d2d;">
<!-- Grid container -->
<div class="container p-4" style="color: whitesmoke; text-align: left;">
<!--Grid row-->
<div class="row">
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase">Books Type</h5>
<ul class="list-unstyled mb-0">
<li>
<a href="books.php?bookCategoryId=1" class="text-light">Environment</a>
</li>
<li>
<a href="books.php?bookCategoryId=2" class="text-light">Biology</a>
</li>
<li>
<a href="books.php?bookCategoryId=3" class="text-light">Mathematics</a>
</li>
<li>
<a href="books.php?bookCategoryId=4" class="text-light">Computer</a>
</li>
<li>
<a href="books.php?bookCategoryId=5" class="text-light">Physics</a>
</li>
<li>
<a href="books.php?bookCategoryId=6" class="text-light">Chemistry</a>
</li>
</ul>
</div>
<!--Grid column-->
<!--Grid column-->
<!-- <div class="col-lg-3 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase mb-0">Authors</h5>
<ul class="list-unstyled">
<li>
<a href="https://www.finolexpipes.com" class="text-light">Finolex Industries</a>
</li>
<li>
<a href="https://www.astralpipes.com" class="text-light">Astral Pipes Pvt Ltd.</a>
</li>
</ul>
</div> -->
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase">Others</h5>
<ul class="list-unstyled mb-0">
<li>
<a href="proposal.php" class="text-light">Publish Book</a>
</li>
<li>
<a href="event.php" class="text-light">Events</a>
</li>
</ul>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase mb-0">Contact us</h5>
<ul class="list-unstyled">
<li>
<p class="text-light">BCA building, The Maharaja Sayajirao University of Baroda, Near Vadodara Railway Station, Vadodara, Gujarat -390001.</p>
</li>
<br>
<li>
<p class="text-light">Phone:- 1234567890</p>
</li>
<li>
<p class="text-light">Email:[email protected]</p>
</li>
</ul>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3 bg-dark navbar-dark" style="color: whitesmoke;"><strong>
©<script>
document.write(new Date().getFullYear())
</script>-<script>
document.write((new Date().getFullYear()) + 1)
</script> LIBRARY MANAGEMENT SYSTEM.</strong>
</div>
<!-- Copyright -->
</footer>
</body>
</html>