-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFooter.php
48 lines (39 loc) · 988 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<style>
#footer {
width: auto;
height: auto;
margin-top: 0px;
padding: 10px;
color: white;
background-color: #002248; /* #333 */
clear: left;
margin-left: 0px;
text-align: center;
}
.sn {
color: yellow;
}
</style>
</head>
<div id="footer">
<p class="copyright">
<div class="col-md-6 col-sm-6 hero-feature">
<div class="caption">
<p>
Copyright © 2018 <a class="sn" href="index.php" target="_blank">Business Card Generator</a>
</p>
</div>
</div>
<div class="col-md-6 col-sm-6 hero-feature">
<div class="caption">
<p>
Designed & Developed By <a class="sn" href="http://allsevennet.blogspot.com/" target="_blank">Team Fit Swift
Gang & Kisalka</a>
</p>
</div>
</div>
<br>
</div> <!-- End Of The Footer -->
</html>