-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
112 lines (111 loc) · 2.77 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<title>Footer of the website</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
text-decoration:none;
list-style: none;
}
footer{
height:auto;
width:100%;
color:white;
background:#000000f2;
margin-top:auto;
padding-bottom:10px;
}
footer #btline{
text-align:center;
margin-top:45px;
font-size: 12px;
color:#ffffff5e;
}
footer #btline span:hover{
color:red;
}
footer .footer-wrapper{
width:100%;
max-width:1280px;
display: flex;
margin:10px auto;
flex-wrap:wrap;
padding:50px;
}
footer .footer-wrapper div{
width:210px;
height:auto;
margin:30px 40px 10px 40px;
}
.footer-wrapper div h1{
font-size: 22px;
padding-bottom:15px;
}
.footer-wrapper div p{
line-height: 25px;
color:#d5d4d4;
}
.footer-wrapper div button{
color:white;
background:red;
border:none;
outline:none;
margin-top:17px;
padding:7px 10px;
cursor:pointer;
}
.footer-wrapper div button:hover{
opacity:0.8;
}
.footer-wrapper div li{
padding:8px 0;
}
.footer-wrapper div ul li a{
color:#d5d4d4;
transition: .5s;
}
.footer-wrapper div ul li a:hover{
color:red;
}
</style>
</head>
<body>
<footer>
<div class="footer-wrapper">
<div>
<h1 class="heading">Product Locator</h1>
<p>Product Locator help you to find your product in your nearby product store. And shopkeeper may register their shop here and get maximum customers reach locally.</p>
</div>
<div>
<ul>
<li><h1 class="heading">Pages</h1></li>
<li><a href="index.php#aboutus">About Us</a></li>
<li><a href="contactus.php">Contact Us</a></li>
<li><a href="privacypolicy.php">Privacy Policy</a></li>
<li><a href="">Disclaimer</a></li>
</ul>
</div>
<div>
<h1 class="heading">Contact</h1></li>
<p>nbps@gmail.com<br>(888) 274-6511 8201<br>Mehta Tower Ring Road,<br> Jodhpur, Raj. 342005</p>
<button onclick="window.location.assign('contactus.php')">Send message</button>
</div>
<div>
<ul>
<li><h1 class="heading">Company</h1></li>
<li><a href="">AboutUs</a></li>
<li><a href="">ContactUs</a></li>
<li><a href="">Privacy Policy</a></li>
<li><a href="">Disclaimer</a></li>
</ul>
</div>
</div>
<p id="btline">
© 2020 <span>Nearyproductstore</span>. All rights reserved.
</p>
</footer>
</body>
</html>