How to Write a Simple HTML Document

You don't need any fancy tools. You can write decent HTML using nothing more than your Notepad or Wordpad program.
At Elfwood, we don't want to see lots of different colours, fancy fonts, odd text sizes or even links in the stories. The simpler the formatting, the better.

For thorough help with respect to creating your own website and doing something slightly more advanced, try HTML Goodies or Webmonkey.

Meanwhile, here are some steps to writing a simple HTML document:

  1. Open Notepad or Wordpad. First type this tag to mark the beginning of the document:
    <html>
  2. The next tag you type marks the beginning of your content:
    <body>
  3. Then you put in your actual story or poem:
  4. When you get to the end of your text, you need to mark the end of your content:
    </body>
  5. Then you need to mark the end of the document:
    </html>
  6. When you save the document, select "all file types" and put .html at the end of the file name. (story.html)
  7. Double click on the document (open it) to see what it looks like in your internet browser, that is how it will look if uploaded to the internet.

Note that the start tag looks always like this: <tag> – that's where the formatted text or anything begins. An end tag will end the formatting and always look like this: </tag> – the slash (/) is very important.
Some tags work without an end tag: <br> – it doesn't change the text, but instead creates a "special character" (linebreak).



Example

Here is an example document:

And this is how it will look like:
Title of My Story

The character was born.

The character lived an interesting life.

After dying, the character was reborn as an Asperugo procumbens.

Note that it doesn't matter if your text is on different lines in the original file on Notepad. Both of the options below will produce the same outcome: