HTML is all about codes and tags. It is a language for creating web pages and determines how information will look in a web browser. There are some basic rules that you should follow when working with HTML.
1. All file names should be in lowercase
2. No special characters should be used except for underscore
3. Remember to use the 'html' extension
HTML is about lots of 'tags' and they usually work in pairs - a beginning tag and an ending tag. To begin HTML you need to start it with the tag <html> and at the end the tag is </html> (the slash is used for the ending tag). You also need to remember that any spaces will be ignored and that spaces need to be written in. The <p> tag will give you a new paragraph.
There is a general basic structure when starting a new page:
<html>
<head>
<title> name of the page </title>
</head>
<body> </body>
</html>
The majority of information goes between the <body> </body> tags.
This is a really good site for Getting Started with HTML