Enhance footer and links section in index.html and links.html

- Updated footer images in index.html with new sources for better visuals.
- Added a new "Cool Links" section in links.html, featuring descriptions for three recommended websites.
- Improved CSS for footer and body layout, including a new background image and styling for list markers.
This commit is contained in:
2026-02-20 13:55:04 -10:00
parent 7aeb0bd57c
commit 27bf3db4a7
10 changed files with 34 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
body {
background-color: #101010;
background-image: url("checkered.png");
background-repeat: repeat;
display: flex;
flex-direction: column;
align-items: center;
@@ -14,6 +16,12 @@ header {
color: #fff;
padding: 20px;
text-align: center;
max-width: 900px;
}
footer {
max-width: 900px;
align-items: center;
justify-content: center;
}
span {
display: flex;
@@ -74,4 +82,8 @@ a {
height: auto;
align-items: center;
justify-content: center;
}
}
ul li::marker {
color: white; /* Or any other color value (e.g., hex code, RGB) */
}