not something compllicated that requires a secondary file like a stylesheet

Well, it doesn't get any less complicated, but you can avoid the separate file requirement by putting the CSS from the stylesheet directly in the HTML.

Just include a <style> section inside the <head> tags, like this:

<head>
<title>differentpla.net</title>
<style>
body { font-family: Verdana; font-size: 0.9em; }
</style>
</head>
_________________________
-- roger