-
Notifications
You must be signed in to change notification settings - Fork 35
/
footer.php
67 lines (63 loc) · 2.44 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
<footer class="page-footer" style="margin-top: 120px; box-shadow: 0px 0px 2px white; background-color: rgb(17,17,17)">
<div class="row wide-container">
<div class="col s3">
<h4 class="white-text bold underline">OG Tech PC</h4>
<p class="grey-text text-lighten-4">Your favorite online PC store.</p>
</div>
<div class="col s2">
<h5 class="white-text bold" style=' text-decoration: underline'>Support</h5>
<p><a class='dropdown-trigger white-text bold' href='#' data-target='dropdown1'>Customer Care
<i class='material-icons' style=' text-decoration: none !important; display: inline-flex; vertical-align: top;'>arrow_drop_down</i>
</a></p>
<ul id='dropdown1' class='dropdown-content white'>
<li><a href='aboutUs.php' class='black-text bold'>About Us</a></li>
<li class='divider' tabindex='-1'></li>
<li><a href='warranty_page.php' class='black-text bold'>Warranty</a></li>
<li class='divider' tabindex='-1'></li>
<li><a href='contactUs.php' class='black-text bold'>Contact Us</a></li>
</ul>
</div>
<div class="col s2">
<h5 class="white-text bold">Find Us</h5>
<p class="bold">
Monday to Sunday : <br> 11.00am to 8.00pm
</p>
<p class="bold">
B-2-16, SD2, Dataran SD PJU9, <br>
Jalan Dataran SD 2, Bandar <br> Sri Damansara, 52200 KL
</p>
</div>
<div class="col s2">
<h5 class="white-text bold">Social</h5>
<a class="waves-effect waves-light blue lighten-1 btn" style="margin: 2px;">
<i class="fa fa-facebook fa-fw"></i> Facebook
</a>
<a class="waves-effect waves-light pink lighten-1 btn" style="margin: 2px;">
<i class="fa fa-instagram fa-fw"></i> Instagram
</a>
</div>
<div class="col s3">
<h5 class="white-text bold ">Our Partners</h5>
<img src="static/images/Partners.png" />
</div>
</div>
<div class="footer-copyright" style="padding-bottom: 20px;">
<div class="wide-container underline">© 2021 OG Tech PC All rights reserved.</div>
</div>
<script>
$(document).ready(function() {
$('.dropdown-trigger').dropdown({
coverTrigger: false
});
$('#pagination').pageMe({
pagerSelector:'#myPager',
activeColor: 'blue',
prevText:'Previous',
nextText:'Next',
showPrevNext:true,
hidePageNumbers:false,
perPage:5
});
})
</script>
</footer>