forked from Biplob14/DIS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
36 lines (30 loc) · 691 Bytes
/
Copy pathfooter.php
File metadata and controls
36 lines (30 loc) · 691 Bytes
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
<style type="text/css">
.foot{
margin-top: 30px;
}
</style>
<div class="jumbotron">
<footer class="page-footer foot"
style="/*position: fixed;*/
left: 0;
bottom: 1;
width: 100%;">
<div class="container foot">
<div class="row">
<div class="col-lg-6" >
<p>Copyright © My Website 2019</p>
</div>
<div class="control-group">
<div class="col-lg-3">
<a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">Contact US</a>
</div>
<div class="col-lg-3">
<a href="about_us.php">about Us</a>
</div>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>