-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
65 lines (62 loc) · 3.32 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
<div class="main-wrap">
<div class="footer-wrap">
<div class="footer-wrap-1">
<div class="footer-section">
<h1>About</h1>
<p class='text-justify'>
Student clubs are essential part of student life. HNBGU Clubs welcomes the contributions of student clubs and aims to promote a lively, creative and inclusive range of activities by providing support, resources and guidance for managing the clubs effectively.
</p>
</div>
<div class="footer-section">
<h1>Important Links</h1>
<a href="https://online.hnbgu.ac.in/">Examination Form</a>
<a href="https://hnbgu.ac.in/">Main Website</a>
<a href="https://hnbgu.ac.in/notification-circulars">HNBGU Notification</a>
<a href="https://hnbgu.ac.in/right-to-information">RTI</a>
</div>
<div class="footer-section">
<h1>Contact Information</h1>
<a href="mailto:">[email protected]</a>
</div>
<div class="footer-section">
<h1>Councils & Clubs</h1>
<?php
$club_list_footer = "SELECT * FROM club_info";
$club_list_footer_query = mysqli_query($conn,$club_list_footer);
if(mysqli_num_rows($club_list_footer_query)){
while($data = mysqli_fetch_assoc($club_list_footer_query)){
echo'<a href="'.$data['club_name'].'">'.$data['club_name'].'</a>';
}
}
?>
</div>
</div>
<div class="footer-wrap-2">
<div class="line"></div>
<div class="social-link">
<a href="https://www.instagram.com/hnbguclubs/?hl=en">
<img src="images/sm/fb.png" alt="Facebook">
</a>
<a href="https://www.instagram.com/hnbguclubs/?hl=en">
<img src="images/sm/ins.png" alt="Instagram">
</a>
<a href="https://www.instagram.com/hnbguclubs/?hl=en">
<img src="images/sm/linkedin.png" alt="linkedin">
</a>
<a href="https://www.instagram.com/hnbguclubs/?hl=en">
<img src="images/sm/twitter.png" alt="twitter">
</a>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="first-box">
<a href="#">Terms & Conditions</a>
<a href="#">Privacy Policy</a>
<a href="https://github.com/surajaswal29">Developer Information</a>
</div>
<div class="last-box">
<a href="#">© Copyright <?php echo date('Y'); ?></a>
</div>
</div>
</div>