The following code example shows How to Use Paragraph Tag in HTML.

Basically, this example demonstrates the use of <center> tag, <h1> tag, <p> tag, and the <hr> tag. The <center> tag aligns the enclosing element to the center. While, the <p> tag creates a paragraph. The <h1> tag represents a heading and the <hr> tag stands for the horizontal rule. It displays a horizontal line.

<html>
 <head>
   <title>Introduction</title>
 </head>
 <body>
   <center><h1>Your Name</h1></center>
   <p>Write Introduction</p>
   <hr>
 </body>
</html>

Output

An Example to Demonstrate How to Use Paragraph Tag in HTML
An Example to Demonstrate How to Use Paragraph Tag in HTML

Further Reading

HTML Examples for Beginners

Introduction to Django Framework and its Features

Django Practice Exercise

Installing Django on Windows

Examples of Array Functions in PHP

Basic Programs in PHP

Registration Form Using PDO in PHP

Inserting Information from Multiple CheckBox Selection in a Database Table in PHP

programmingempire

princites.com