From 4035d06e67f240f4ea6dd02e321b9efa00da0ae3 Mon Sep 17 00:00:00 2001 From: Zane V Date: Fri, 20 Feb 2026 15:54:11 -1000 Subject: [PATCH] Add navigation section to index.html and links.html - Introduced a new navigation container in both index.html and links.html for improved site navigation. - Added links to Home and Links pages with associated images for better user experience. - Updated CSS to style the new navigation elements, ensuring they are visually appealing and functional. --- index.html | 6 ++++++ links.html | 6 ++++++ style.css | 15 ++++++++++++++- 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 6a91a3e..a9ad0ae 100644 --- a/index.html +++ b/index.html @@ -14,6 +14,12 @@
Under Construction +

Welcome to my website :D

diff --git a/links.html b/links.html index 2a749fe..513c048 100644 --- a/links.html +++ b/links.html @@ -13,6 +13,12 @@

Under Construction +

Cool Links

These are some cool websites I have found and want to share with you.

diff --git a/style.css b/style.css index 64202db..05208f0 100644 --- a/style.css +++ b/style.css @@ -86,4 +86,17 @@ a { ul li::marker { color: white; /* Or any other color value (e.g., hex code, RGB) */ } - \ No newline at end of file +.nav-item { + height: 100px; + width: auto; + image-rendering: pixelated; + text-align: center; + position: sticky; +} +.nav-container { + display: block; + position: absolute; + text-align: center; + top: 20px; + left: 40px; +} \ No newline at end of file