<HTML>
<HEAD>
<TITLE>
My first page
</TITLE>
</HEAD>
<BODY>
Hello, World!

This is the same page, but with several additional paragraphs of text added, of which
this is the first. Text is very easy to handle in HTML, as long as you don't try to
include special formatting characters inserted by word processors (such as bolding
information, etc.) which comes out in the form of garbage characters when viewed in
a Web browser.

This is the beginning of a second paragraph. By now you should have noticed that something
is seriously wrong. Sure enough, HTML ignores things like carriage returns in your HTML
code. If you want a carriage return or a blank line between paragraphs you're going to
have to insert actual HTML codes for that purpose, which we'll start looking at in the
next article.
</BODY>
</HTML>