Hello, world!
Hello, world!
Hello? Is anyone listening? Is this thing on?
Hello, world. I’m Freyja (Rae? idk dude, names are as difficult as gender for me.) This is my website. Well… one of my websites. I have a few domains. This one is low-effort. Going forward, I’m just gonna use this thing as a sort of blog.Since… I can? I mean, its not like HTML is complicated… It was designed mainly as a way to do books, but better - and with HYPERTEXT. Modern web design has more or less bastardized existing technologies to do fancy things with web browsers. But at the end of the day, raw HTML still works just fine - it just isn’t as purdy.
EDIT 2024-01-17 11:22: This was originally written in html for an html-only version of this blog. I got tired of that rather quickly. Its difficult to maintain HTML by hand. I wanted something a little more automatic, so the blog has been updated to that end.
Here’s the original HTML of this blog entry:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello, world!</title>
</head>
<body>
<nav>
<a href="/index.html">Index</a>
<a href="/about.html">About</a>
<a href="/contact.html">Contact</a>
</nav>
<hr>
<!-- CONTENT GOES HERE -->
<h1>Hello? Is anyone listening? Is this thing on?</h1>
<h2>11:03am(PDT)</h2>
<p>Hello, world. I'm Freyja (Rae? idk dude, names are as difficult as gender for me.) This is my website. Well... *one*
of my websites. I have a few domains. This one is low-effort. Going forward, I'm just gonna use this thing as a sort
of blog.Since... I can? I mean, its not like HTML is complicated... It was designed mainly as a way to do books, but
better - and with HYPERTEXT. Modern web design has more or less bastardized existing technologies to do fancy things
with web browsers. But at the end of the day, raw HTML still works just fine - it just isn't as purdy.</p>
<!-- END CONTENT -->
<hr>
<footer>
<p>Published: 28th June, 2023</p>
</footer>
</body>
</html>