What the heck is HTML?

HTML stands for "hyper text markup language". HTML is made up of a tag. 
A tag is a piece of text contained in <> and looks something like this:


<tag>

There are two types of tag. Opening and closing tags. Closing tags are only different as they have a / before them:

</tag>

Tags appear in pairs like this:

<tag></tag>

Anything between two tags will have those tags applied to them. 
Here is an example.

<p>hello</p>

Nearly all tags have a closing tag but a few do not. What you must remember is:

<Tag>Text</Tag>

Declaring HTML 

Open notepad, wordpad or an html editor. then type the following:

<html>
<head>
<title>Untitled</title>
</head>

<body>

</body>
</html>

I will explain what all this means below:
<html>

Tells the browser that this is the beginning of an HTML document.

<head>

This is the beginning of the header section. The header section contains the configuration options for the page (like title).

<title>Untitled</title>

This tells the browser what to display as the title of the page. This appears in the title bar at the top of the browser. Enter the name of your page between the <title> tags.

</head>


End of the header section.

<body>

</body>

Everything between these is in the body of the page. This is where all text, images etc. are. This is the most important part of the page.

</html>

Shows the end of the HTML document.

always save it as a .html file eg. myfirstwebpage.html