Paragraph in HTML

The Paragraph in HTML are defined inside the <p> and </p. tags.
Understand with Example
The Tutorial illustrates an example from Paragraph in HTML.In this Tutorial, the
HTML code begin with a <html.> tag, The <head>tag follows the
<html>tag, which include a <title>tag, that contain the title
of the paragraph.
<p> :The paragraph in HTML are defined inside the HTMLThis
contain the contents of HTML Page.
Example:
<html>
<head><title>Example on the use of Paragraphs in HTML</title></head>
<body>
<p>This is my first paragraph.<br/>
It describes how to use HTML.</p>
<p>This is my second paragraph. This describes the basic tags used in HTML.<br/>
Html is useful in creating web pages.</p>
</body>
</html>
|
HTML automatically adds an extra blank line before and after a paragraph.
Output shown in the Browser window will be like this- Result
Download

|