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

BIN
buttons/bestview.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
buttons/email-icon.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
buttons/emoticon.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 601 B

BIN
buttons/fspeech96.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

BIN
buttons/imissxp.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
checkered.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -38,7 +38,7 @@
<footer>
<br><br><br>
<img class="eeto" src="">
<img class="eeto" src="https://jack-dawlia.neocities.org/image/gif/i-love-physical-media-button-cd.gif">
<img class="eeto" src="https://zane.org/buttons/i-love-physical-media-button-cd.gif">
<img class="eeto" src="https://jack-dawlia.neocities.org/image/blue-favourite.gif">
<a href="https://store.steampowered.com/app/400/Portal/"><img class="eeto" src="https://jack-dawlia.neocities.org/image/i-love-portal.gif"></a>
<img class="eeto" src="https://jack-dawlia.neocities.org/image/gif/jd-house-huh-button.gif">
@@ -48,10 +48,14 @@
<a href="https://archive.org/details/netscape-navigator-4.0.4"><img class="eeto" src="https://anlucas.neocities.org/browser.gif"></a>
<img class="eeto" src="https://anlucas.neocities.org/linux_now.gif">
<a href="https://vimm.net/vault"><img class="eeto" src="https://anlucas.neocities.org/piracy.gif"></a>
<img class="eeto" src="https://anlucas.neocities.org/prod_625_17265.gif">
<img class="eeto" src="https://zane.org/buttons/fspeech96.gif">
<a href="https://a.co/d/06BAB5ge"><img class="eeto" src="https://lilaclynx.net/img/nocookie.gif"></a>
<a href="https://yesterweb.org/no-to-web3/"><img class="eeto" src="https://auzziejay.com/images/noweb32.gif"></a>
<a href="https://home-assistant.io"><img class="eeto" src="https://zane.org/buttons/home-assistant.gif"></a>
<img class="eeto" src="https://zane.org/buttons/bestview.gif">
<a href="mailto:zane@zane.org"><img class="eeto" src="https://zane.org/buttons/email-icon.gif"></a>
<img class="eeto" src="https://zane.org/buttons/emoticon.gif">
<img class="eeto" src="https://zane.org/buttons/imissxp.gif">
<br><br><p class="mini-text"><i>Running since Febuary 19th 2026</i></p>
</footer>
</body>

View File

@@ -15,6 +15,21 @@
<img class="eeto" src="https://anlucas.neocities.org/under-con.gif" alt="Under Construction">
<a href="https://zaney.atabook.org/"><img class="eeto" src="https://zane.org/buttons/guestbook.gif"></a>
</header>
<h1>Cool Links</h1>
<p>These are some cool websites I have found and want to share with you.</p>
<br>
<ul>
<li>
<p><a href="https://vimm.net">Vimm's Lair</a> - A website that has resources for playing older titles! It features pages dedicated to emulators, every ROM (out of 33 consoles and counting), ROM hacks, manuals, and even more links!</p>
</li>
<li>
<p><a href="https://wiilink.ca/">WiiLink (Previously WiiLink24)</a> - This is a website for the Wii mod known as WiiLink. WiiLink allows the Wii to connect to the online services again, just like it used to. If anybody reading this is a developer of WiiLink I have an idea. Add the Wii Shop back and partner with Vimms Lair to download the WiiWare.</p>
</li>
<li>
<p><a href="https://github.com/alexta69/metube">MeTube</a> - This isn't really a website but its worth adding. MeTube is a fork of yt-dlp that adds a really nice WebUI. I use it a lot and I feel that you should too! I feel that for what it is people should self-host it more.</p>
</li>
</ul>
<br><br><br>
<h1>Check out my internet neighbors!</h1>
<p>These people are on the internet and have cool websites to link to on my website.</p>
<a class="why-are-you-looking-at-my-code" href="https://melonking.net" target="_blank"><img class="why-are-you-looking-at-my-code" src="https://lu.tiny-universes.net/images-links/melonking.gif" alt="Melonking"></a>

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) */
}