Using Notepad...
A webpage is made up of tags like this <a href=''>text</a> that is a hyperlink!
Basic HTML pages (before any tags are added) should liik like this...
### <html> <head> <title></title> </head> <body> </body> </html> ###
you would place most of your tags inbetween the <body> and the </body> tags.
To add text you would just enter text... Get it!
To add a image you would use the tag <img src='here is where you would place your image location.gif (bmp or jpg most other types are not web frendly - e.g psd)' border='0'>
To add a link you would use this... <a href='http:// link to location.html'>Text link or image</a> if you want a image there you would use that image tag [above]...
To center text place the text between this tag... <center>TEXT</center>
For Bold Text <b>TEXT</b>
For Underlined text <u>TEXT</u>
For italics <i>TEXT</i> in that <body> tag you can change the background colour text colour and link colours by changing it to <body bgcolor='#hex colour for the background' text='#hex colour for the text' link='#hex colour for the links' alink='#hex colour for the active links' vlink='#hex colour for the viseted links'> You should be able to use this to make a basic HTML page