Right, you're there, game finished but nowhere to put it. What you need is a website. But you don't know HTML? Let this article tell you the basics. This won't make you your own site with your own identity, but it will help you.

Lets make an example. Say for instance, the 'company' you have was called 'Meaty Games' and colours associated with it were blue and yellow. Start of with the HTML tag, the the HEAD tag. (<HTML> and <HEAD>. Change this code to make the style suit yourself..

<HTML>
<HEAD>
<TITLE>Meaty Games</TITLE>
</HEAD>

This will change the name at the top to Meaty Games. On DC it is The Daily Click :: d/m/y.
Next add your body tags. This is where all your text, navigation etc. goes. This is also where you set the bg colour, text colour etc.
Add this code...
<BODY BGcolor="#455BC7" LINK="#80FF00" VLINK="#49CD1D" ALINK="#FACDC0" TEXT="#F2F200">
This will create a blue background, with yellow text and green links. Go to http://www.juicystudio.com/tutorial/colour.html for more colour codes.

To make a suitable heading to your site, you may want to use a picture.
<center>Image
This will make your picture centered and have a mouse-over text. (If you haven't got a picture (or don't want one) go down to where it says 'Headings' in bold.)

After that you will need your font style tags.
<FONT SIZE=3 FACE="Verdana,Arial,Helvetica">
This will set the font as Verdana. But some visitors will not have Verdana installed, so it may use Arial and Helvetica instead.

Headings
If you want a heading instead of a picture, after the FONT tag, put...
<h1>Meaty Games</h1>

BR is the HTML code for a new line.

For navigation, you may want to use text at the top (like DC). So straight after the FONT tag, put...
<center>:: <a href="index.html">Home</a> :: <a href="games.html">Games</a> ::</center>
Carry on the sequence, changing the Home bit to the name of your other pages and files. (:: is not necessary).
Remember to put
after it.

Your almost done making a basic site, all you have to do is add your text. All you have to do is type the words in and any time you want to go to a new line, put

(note, the text will wrap when it comes to the end of the screen, so don't worry about that.)

For links, put...
<a href="http://www.whateveryouwant.com">What Ever You Want</a>

It's just the same as the navigation bit. Remember to put http:// or it will not work.

Your basic page is now complete. Just upload it onto server and enjoy...

This is my first article, so tell me your thoughts.