Files
homepage/guestbook.html
Krrish Ghimire dd3408c173 my site
2025-07-19 12:55:42 +05:45

38 lines
1011 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>📖 Guestbook</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>📬 Sign My Guestbook!</h1>
<div class="content">
<p>
<a href="home.html">🏠 Home</a> |
<a href="about.html">🧑 About</a> |
<a href="projects.html">💻 Projects</a> |
<a href="guestbook.html">📖 Guestbook</a> |
<a href="journal.html">📓 Journal</a> |
<a href="links.html">🔗 Links</a> |
<a href="secrets.html">🕵️ Secrets</a>
</p>
<div class="ascii-title">===[ LEAVE A MESSAGE! ]===</div>
<form>
<p>
Name: <input type="text" name="name" size="30"><br><br>
Message:<br>
<textarea name="message" rows="5" cols="40"></textarea><br><br>
<input type="submit" value="Sign Guestbook">
</p>
</form>
<p><i>(Note: This doesn't actually save anything. It's 1999, okay?)</i></p>
<p style="margin-top: 30px;"><img src="./gifs/guest.gif" class="gif"></p>
</div>
<marquee>I am roaming around the internet.</marquee>
</body>
</html>