-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·41 lines (41 loc) · 1.8 KB
/
Copy pathfooter.php
File metadata and controls
executable file
·41 lines (41 loc) · 1.8 KB
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
<!-- Footer -->
<footer id="footer">
<div class="container">
<div class="row double">
<div class="6u">
<div class="row collapse-at-2">
<div class="6u">
<h3>Ciphers</h3>
<ul class="alt">
<?php echo getCipherList(); ?>
</ul>
</div>
<div class="6u">
<h3>Algorithms</h3>
<ul class="alt">
<?php echo getAlgoList(); ?>
</ul>
</div>
</div>
</div>
<div class="6u">
<h2>About Us</h2>
<p>Okay! This is About Us!</p>
<ul class="icons">
<li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon fa-linkedin"><span class="label">LinkedIn</span></a></li>
<li><a href="#" class="icon fa-pinterest"><span class="label">Pinterest</span></a></li>
</ul>
</div>
</div>
<ul class="copyright">
<li>© CS561 All rights reserved.</li>
<li>Design: <a href="https://github.com/SPriyal/OnlineCipher">CS561</a></li>
<li>Images: Wikimedia</li>
</ul>
</div>
</footer>
</body>
</html>