Tags are used to signify the beginning and the end of a document feature.
They contain the instructions for what the browser does.
This represents an opening tag < >
This represents a closing tag </ >
<HTML>....... </HTML>
Hyper Text Markup Language.
These tags enclose the entire document and define the beginning and the end of the document.
<TITLE>........</TITLE>
These tags are placed inside the HEAD tags and the title of your document is placed within these TITLE tags.
Your title will then be shown in the top titlebar of your browser.
This is the basic layout of a HTML document.
<HTML> <HEAD> <TITLE>Document Title</TITLE> </HEAD> <BODY> The Body section is where your information goes in the form of text, tables, forms, images etc. </BODY> <HTML>
To further enhance your page you can use CSS for styling and Javascript for functionality.
A couple of links from my CSS & Script section Applying CSS and Basics