A basic html page
    There are 3 main parts to a basic html page.

  1. The HTML <html>...</html>

    This tag is the first tag on the page and is written like this <html> this tells the visiting browser that the page is written in Hyper Text Markup Language.
    This encloses both the Head and the Body of the document. The last tag on the page is therefore </html>
    For more information on the HTML tag click here

  2. The Head <head>...<head>

    The head tells the visiting web browser or search engine, a few basic facts about the page. It is written like this <head>
    This section comes mediately after the </html> tag and before the body of the document and the end of the head and is represented with the </head> tag
    For more information on the head tag click here

  3. The Body <body>...</body>

    The body tells the visiting web browser or search engine, a few basic facts about the page. It is written like this <body>
    This section comes mediately after the </head> tag and is the last part of the document and the end of the body and is represented with the </body> tag
    For more information on the head tag click here

A Basic template

<html>
    <head>
    </head>

    <body>


    </body>
</html>