HTML tags usually come in pairs; the opening tag and the closing tag. Everything between the opening tag and the closing tag is formatted by the tag and its optional parameters (specified as part of the opening tag).
For example, if you write:
the result would be:The Internet is <STRONG>very</STRONG> useful!
The Internet is very useful!
A very simple HTML document looks like this (the indents are not necessary and will be ignored by the browser);
<HTML>
<HEAD>
<TITLE>
Enter your title here
</TITLE>
</HEAD>
<BODY>
<H1>First Heading</H1>
Enter the text of your document here
</BODY>
</HTML>
All spacing characters (e.g. spaces, tabs and line breaks) are replaced
by single spaces when HTML documents are displayed by Web browsers. This
means that you must specify where you want line breaks
(<BR>) and paragraphs (<P>) in your
text.