21 lines
407 B
PHP
21 lines
407 B
PHP
<style>
|
|
.footer {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
height: 50px;
|
|
width: 100%;
|
|
background-color: #aef703;
|
|
text-align: right;
|
|
color: antiquewhite;
|
|
line-height: 50px;
|
|
}
|
|
.footer span {
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
|
|
<div class="footer">
|
|
<span> @Copyright Belajar Laravel Fahim</span>
|
|
</div> |