Character limit on guestbook entries, guestbook takes full space, menu links can be clicked anywhere

This commit is contained in:
Hamza Nasher-Alneam 2025-05-05 15:09:15 -04:00
parent 3f7805278d
commit 9c0a834c71
9 changed files with 93 additions and 45 deletions

View file

@ -1,24 +1,16 @@
<div class="menu">
<div>
<div class="item">
<a href="index.html" title="home">
<img src="icons/home.svg" alt="home">
</a>
</div>
<div class="item">
<a href="projects.html" title="projects">
<img src="icons/web_stories.svg" alt="projects">
</a>
</div>
<div class="item">
<a href="thoughts.html" title="thoughts">
<img src="icons/rss_feed.svg" alt="thoughts">
</a>
</div>
<div class="item">
<a href="guestbook.html" title="guestbook">
<img src="icons/developer_guide.svg" alt="guestbook">
</a>
</div>
<a class="item" href="index.html" title="home">
<img src="icons/home.svg" alt="home">
</a>
<a class="item" href="projects.html" title="projects">
<img src="icons/web_stories.svg" alt="projects">
</a>
<a class="item" href="thoughts.html" title="thoughts">
<img src="icons/rss_feed.svg" alt="thoughts">
</a>
<a class="item" href="guestbook.html" title="guestbook">
<img src="icons/developer_guide.svg" alt="guestbook">
</a>
</div>
</div>