34 lines
674 B
PHP
34 lines
674 B
PHP
<style>
|
|
/* ****FOOTER**** */
|
|
.footer {
|
|
background-color: #444;
|
|
|
|
height: 100px;
|
|
|
|
position: relative;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
|
|
padding: 0px 20px 0px 20px;
|
|
|
|
border-top: 1px solid #aaa;
|
|
box-shadow: 0px 1.5px 8px #444;
|
|
|
|
color: #fff;
|
|
text-shadow: 0.5px 0.5px 0.5px black;
|
|
|
|
display: grid;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer-link {
|
|
color: aliceblue;
|
|
}
|
|
|
|
</style>
|
|
|
|
<footer class="footer">
|
|
<p><a href="https://www.cuqmbr.pp.ua" class="footer-link" style="text-decoration:none">2021 © cuqmbr</a></p>
|
|
</footer> |