Core HTML

The <p> Tag

The most basic HTML tag is the <p> tag. This tag is used to display three paragraphs of text by enclosing the text of each between the start and end <p> tag as shown below. This HTML page displays the text of the Apostles' Creed as three paragraphs.

PTag.html

<!DOCTYPE html>
<html>
  <head>
    <title>XoaX.net's HTML: <p> Tag Example</title>
  </head>
  <body>
    <p>I believe in God, the Father Almighty, Creator of heaven and earth.</p>
    <p>I believe in Jesus Christ, His only Son, our Lord; who was conceived by the Holy Ghost,
    born of the Virgin Mary, suffered under Pontius Pilate, was crucified; died, and was buried.
    He descended into hell. On the third day, He arose again from the dead. He ascended into
    heaven and sits at the right hand of God, the Father Almighty. He will come to judge the
    living and the dead.</p>
    <p>I believe in the Holy Ghost, the Holy Catholic Church, the communion of Saints, the
    forgiveness of sins, the resurrection of the body, and the life everlasting. Amen.</p>
  </body>
</html>
 

Output

 
 

© 2007–2024 XoaX.net LLC. All rights reserved.