copbird-website/www/footer.html

63 lines
1.5 KiB
HTML
Raw Permalink Normal View History

2023-06-21 16:56:22 +00:00
<!DOCTYPE html>
<html>
<head>
<style>
.tab-content {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.footer {
background-color: #ba289f;
color: #fff;
padding: 5px;
text-align: center;
font-size: 14px;
left: 0;
width: 100%;
clear: both;
position: absolute;
}
.footer p {
margin: 0;
}
.footer table {
margin: 0;
margin-left: auto;
margin-right: auto;
}
.footer th {
padding-right: 3em;
margin-left: auto;
margin-right: auto;
}
.footer a {
color: #fff;
}
</style>
</head>
<body>
<footer class="footer">
<table>
<tr>
<th><a href="https://ag-link.xyz/impressum">Impressum</a> </th>
<th><a href="https://ag-link.xyz/feed.xml">RSS</a> </th>
<th><a href="https://lediver.se/@link">Mastodon</a> </th>
<th><a href="https://git.ag-link.xyz/">Git</a> </th>
</tr>
</table>
<p>2023 AG Link. Die von uns verfassten Inhalte stehen, soweit nicht anders vermerkt, unter der Lizenz <a
href="https://creativecommons.org/licenses/by-nc-sa/4.0/"> Creative Commons BY-NC-SA 4.0</a>. </p>
</footer>
</body>
</html>