feat: add styled footer to index page
Styled the footer with background color and text color for improved visual consistency. Rearranged HTML structure to correctly enclose content within the main and footer tags, enhancing semantic structure and maintainability.
This commit is contained in:
parent
30cf916964
commit
0b57f6cfe6
1 changed files with 7 additions and 3 deletions
|
@ -32,6 +32,10 @@
|
|||
border-radius: 5px;
|
||||
font-family: monospace;
|
||||
}
|
||||
footer {
|
||||
background-color: #343a40;
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -54,6 +58,9 @@
|
|||
<div class="example-code">
|
||||
<code>{{ domain }}css?family=Montserrat:400,700</code>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="text-center py-4">
|
||||
<h2 class="mt-5">Privacy</h2>
|
||||
<p>
|
||||
GoogleDonts is a privacy-focused service. It does not track you or log
|
||||
|
@ -67,9 +74,6 @@
|
|||
>Private.coffee Git</a
|
||||
>.
|
||||
</p>
|
||||
</main>
|
||||
|
||||
<footer class="text-center py-4">
|
||||
<p>
|
||||
Brought to you by <a href="https://private.coffee">Private.coffee</a>
|
||||
</p>
|
||||
|
|
Loading…
Reference in a new issue