moth/html/index.html

28 lines
961 B
HTML
Raw Normal View History

2015-04-02 17:44:49 -06:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Welcome</title>
2015-04-03 16:52:43 -06:00
<link rel="stylesheet" href="css/style.css" type="text/css">
2015-04-02 17:44:49 -06:00
<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>
2015-04-07 16:57:00 -06:00
<section>
Here's some stuff.
2015-04-03 16:52:43 -06:00
</section>
2015-04-02 17:44:49 -06:00
</body>
</html>