Paragraph in HTML | HTML paragraph
Paragraph In HTML HTML paragraph is use to display paragraph on web page. <p> tag is use for paragraph. Paragraph tag start with <p> and end with </p>. Paragraph is display text. Example < html > < head > < title > Paragraph </ title > </ head > < body > < p > This is a simple paragraph </ p > </ body > </ html > Result This is a simple paragraph Horizontal Line in HTML The <hr> tag defines a thematic break in an HTML page. It will draw a horizontal line between two tags. It has no ending tag. Example < html > < head > < title > Paragraph </ title > </ head > < body > < p > This is a < br > simple paragraph </ p > </ body > </ html > Result...