-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
28 lines (24 loc) · 829 Bytes
/
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
<div class="footer">
<div class="bottomLine">
<p>© Shree Ramkrishna Institute of Science and Technology</p>
</div>
</div>
</body>
<link href="https://fonts.googleapis.com/css?family=Lato|Raleway&display=swap" rel="stylesheet">
<script src="https://use.fontawesome.com/742ca76364.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/slider-ap.min.js"></script>
<script>
$(document).ready(function(){
$('.menuToggle').click(function(){
$(this).toggleClass("menuToggleVissible");
$(this).find(".fa").toggleClass("fa-bars fa-times");
$(".menu").toggleClass("menuVissible");
});
/*$('.menuToggle[state="hidden"]').click(function(){
$(this).attr("state", "visible");
$(".menu").attr("state", "visible");
});*/
});
</script>
</html>