HTML Paragraph

The HTML <p> element defines a paragraph.
Example

This paragraph contains a lot of lines in the source code, but the browser ignores it.

<p> This paragraph contains a lot of lines in the source code, but the browser ignores it. </p>

Attribute of Paragraph tag

  1. Align :- There are four types of Align
    1. Left
    2. Center
    3. Right
    4. Justify
  2. Title :- On Mouse Message

Example

This is Left Paragraph (Default).

This is center Paragraph

This is right Paragraph

This is Justify Paragraph

<p align="left" title='Left Align'>This is Left Paragraph (Default). </p>

<p align="center" title='center Align'>This is center Paragraph</p>

<p align="right" title='right Align'>This is right Paragraph</p>

<p align="justify" title='jusrify Align'>This is Justify Paragraph</p>

HTML Pre

The HTML <pre> element defines a pre.
It is for write as it.
just like a poem or any clipart
Example
	My Bonnie lies over the ocean.

	My Bonnie lies over the sea.
	
	My Bonnie lies over the ocean.

	Oh, bring back my Bonnie to me.
	
<pre >
	My Bonnie lies over the ocean.

	My Bonnie lies over the sea.
	
	My Bonnie lies over the ocean.

	Oh, bring back my Bonnie to me.
	</pre>

Html Definition Tag

The HTML <dt> element defines a Definition Title.
It has <dd> a sub tag use for definition line.
Example
Computer
Computer is an electronic machine
<dt>
	Computer
	<dd>
	Computer is an electronic machine
	</dd>
</dt>