Each paragraph must must have an end of paragraph of tag, <p>. Blank lines, indentations, and extra spaces are ignored. The only exception to this is "preformatted" text which will be discussed later. Word Wrapping can occur. This is the HTML code for a basic document that contains paragraphs:
<html>
<head>
<TITLE>The Title of Your Document Goes Here</TITLE>
</head>
<body>
<h1>The Title of Your Document Goes Here</h1>
<h2>This is a Smaller Header</h2>
<h3>Your information goes here. The line above represents a level one heading which is the largest text style. This is the end of the paragraph.<p>
This is the second paragraph.<p>
This is the third paragraph.<p></h3>
</body>
</html>