-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
46 lines (34 loc) · 1.57 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
<section class="footer">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<div class="box-container">
<div class="box">
<h3>Quick Links</h3>
<a href="home.php">Home</a>
<a href="about.php">About Us</a>
<a href="shop.php">Shop</a>
<a href="contact.php">Contact Us</a>
</div>
<div class="box">
<h3>Extra Links</h3>
<a href="login.php">Login</a>
<a href="register.php">Register</a>
<a href="orders.php">My Orders</a>
<a href="cart.php">My Cart</a>
</div>
<div class="box">
<h3>Contact Info</h3>
<p style="color: white; font-size : 15px;"> <i class="material-icons">call</i> +000-000-0000 </p><br>
<p style="color: white; font-size : 15px;"> <i class="material-icons">smartphone</i> +111-222-3333 </p> <br>
<p style="color: white; font-size : 15px;"> <i class="material-icons">mail</i> [email protected] </p> <br>
<p style="color: white; font-size : 15px;"> <i class="material-icons">pin_drop</i> No 34, Wattala Colombo </p> <br>
</div>
<div class="box">
<h3>Follow Us</h3>
<a href="#"> Facebook</a>
<a href="#"> Twitter</a>
<a href="#"> Instagram</a>
<a href="#"> Linkedin</a>
</div>
</div>
<div class="credit">© copyright @ <?php echo date('Y'); ?> <span>created by ama |All rights reserved</span> </div>
</section>