HTMO6
DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION

Paragraph Tag

OUTPUT

This page illustrates how to use the paragraph tag to create paragraphs.

When surfers browse the Web, they are accessing and reading home Web pages and pages that are linked to them. These pages that are written using a scripting language called HTML (HyperText Markup Language). We here begin covering HTML and page layout, organization and design.

The markup language is a method to embed special tags that describe the structure as well as the formatting of a document. The markup language allows the non-sequential way of reading HTML documents. The simplicity and power of HTML let anyone create Web documents. Making Web documents is easy and straightforward. The markup nature of HTML is what is behind the incredible breadth and reach of the Web.

SOURCE CODE

<HTML>
<HEAD>
<TITLE>HTM06. Paragraph tag Web pages</TITLE>
</HEAD>
<BODY>
This page illustrates how to use the paragraph tag to create paragraphs.
<P>
When surfers browse the Web, they are accessing and reading home Web pages and pages that are linked to them. These pages that are written using a scripting language called HTML (HyperText Markup Language). We here begin covering HTML and page layout, organization and design. <P>
The markup language is a method to embed special tags that describe the structure as well as the formatting of a document. The markup language allows the non-sequential way of reading HTML documents. The simplicity and power of HTML let anyone create Web documents. Making Web documents is easy and straightforward. The markup nature of HTML is what is behind the incredible breadth and reach of the Web. </BODY>
</HTML>