refactor(footer): improve HTML structure and accessibility
Optimized the footer HTML markup for better readability and web accessibility. Changes include the use of more semantic HTML, such as replacing `<center>` tags with CSS for centering content, and ensuring proper use of self-closing `<hr />` tags. This update aims to enhance maintainability and ensure a more inclusive user experience by adhering to modern web standards.
This commit is contained in:
parent
0f9f8b21a4
commit
d20f1d2e1b
1 changed files with 11 additions and 7 deletions
|
@ -1,7 +1,11 @@
|
||||||
<footer>
|
<footer class="text-center">
|
||||||
<hr>
|
<hr />
|
||||||
<center>
|
<p>
|
||||||
<p><a href="https://git.private.coffee/PrivateCoffee/structables">Structables Code (AGPLv3)</a></p>
|
<a href="https://git.private.coffee/PrivateCoffee/structables"
|
||||||
<p><a href="/privacypolicy">View privacy policy.</a></p>
|
>Structables Code (AGPLv3)</a
|
||||||
</center>
|
>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="/privacypolicy">View privacy policy.</a>
|
||||||
|
</p>
|
||||||
</footer>
|
</footer>
|
Loading…
Reference in a new issue