Ved Prakash Understanding the paragraph tag | codinggiri GuidePedia

0

The <p> tag

To show a individual paragraph on your page you have to use the <p> tag
<p> = = paragraph tag

take a look at the code below
notice what is written between <p> and </p> . save and run the code to see the result.

<!doctype html>
<html>
 <head>
  <title>
  My first Web page
  </title>
  <body>
   <p>
    This is a paragraph in HTML5
   </p>
  </body>
 </head>
</html>
















Post a Comment

 
Top