 Online: 18906
 Online: 18906
                
            HTML paragraph is defined with <p> tag. The using of p tag creates blank line above and below the text of a paragraph.
<p>Dotnetfunda is a online tutorial which is used to share and learn the technologies with ea ch other</p> <p>Techfunda is an online tutorial which is to learn in step by step manner</p>
In the above code snippet we defined two paragraphs by using <p> tags which creates the paragraph by creating balnk line abobe and below the text of a paragraph
output
Paragraph aligning right is used to align the text right aside
 
<h2>Paragraph</h2>
    <p style="text-align:right;">
        dotnetfunda is a online tutorila which is used to share and learn the technologies.
        TechFunda is used to learn technologies step by step manner
    </p>
In the above code snipet we have defined text aligning right side
<align=right>- renders the text to align the text right side
output
Paragraph aligning center is used to align the text center
 
<h2>Paragraph</h2>
    <p style="text-align:center;">
        dotnetfunda is a online tutorila which is used to share and learn the technologies.
        TechFunda is used to learn technologies step by step manner
    </p>
In the above code snipet we have defined text aligning center
<align=center>- renders the text to align the text center
output
We can also insert the images in the paragraphs.
 <h2>Paragraph</h2>
    <p><img src="images/KidsFundaLoga.png" height="40" width="70" />dotnetfunda is a online tutorila which is used to share and learn the technologies.
     TechFunda is used to learn technologies step by step manner</p>
In the above code snippet we have defined how to keep the image in the paragraph. We have to add the image src in the <p> to display the image in the screen.
output
We can also add the colors to the paragraph by using style
<h2>Paragraph with color</h2>
    <p style="color:blue;">dotnetfunda is a online tutorials which is used to share and learn the technologies.
     TechFunda is used to learn technologies step by step manner</p>
In the above code snippet we have added color to the paragraph we have takan style as color which we have given color as blue.
output
Views: 6479 | Post Order: 9