Creating Paragraphs
All web pages are created by using at least a few simple tags. It is my belief that the three most natural tags to use in an HTML document are the tags for paragraphs, linking sites together, and displaying images.
Paragraphs
Paragraphs contain most of the information in any web page. The element allows for long paragraphs as well as short lines of text to be viewed as a single entity. Paragraphs are considered block-level elements, meaning that it has a "double-spaced" effect both above and below the paragraph. This extra white space cannot be changed within the paragraph tag alone, but you can use CSS to adjust line heights, padding, margins, etc.
A typical paragraph may look something like this:
<html>
<head>
<title>HTML for Beginners - Basic HTML</title>
</head>
<body>
<p>Some text here</p>
</body>
</html>
And will produce Some text here