mirror of https://github.com/dirtbags/moth.git
28 lines
961 B
HTML
28 lines
961 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Welcome</title>
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
|
<script src="js/terminal.js" async></script>
|
|
<script>
|
|
function init() {
|
|
output("Hello world.");
|
|
output("This is the new Tracer FIRE terminal.")
|
|
output("This is going to be your primary interface to Tracer FIRE 6 and 7. All of your interactions with the system will go through this interface, which is sort of like the old school terminal we had previously, but not exactly? I guess it's like steampunk or weird western, but for the 1980s.")
|
|
output("I sincerely hope you like it. Personally, I am pretty psyched about how it looks. If I could go back and show it to myself when I was 13 I would have been bowled over.")
|
|
output(" - Neale Pickett")
|
|
}
|
|
|
|
window.addEventListener("load", init);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Tracer FIRE 6E</h1>
|
|
|
|
<section>
|
|
Here's some stuff.
|
|
</section>
|
|
</body>
|
|
</html>
|