HTML Tutorial

HTML Paragraph

The <p> tag allows the creation of paragraphs that helps to break up the text into clear sections on the page. In order to form a paragraph, the inner text should be placed inside the text tags 

 


When the <p> tags are typed the browser automatically adds margins before and after the paragraph to facilitate the display of the physical structure of the text. Every new paragraph is the beginning of a fresh block of text, thus helping in the arrangement of the content and enhancement of the user.

				
					<p> I am a paragraph 1 </p>
<p> I am a paragraph 2 </p>
				
			

Try It Yourself

Try It Yourself