How to use Paragraph Tag in HTML

In this article I will explain how to use the paragraph tag in HTML.
  • 2523

Introduction

Paragraph tag <p> is used to move the cursor in next line with the space between the lines.

HTML code:

<html>

<head>

    <title>HTML Example</title>

</head>

<body>

    <p>

        Hi!Today I explain what is HTML.Html stands for hyper text markup language.</p>

    <p>

        It is not programming language.It is Web Designing language. It means it is used

        to design a web page.</p>

    <p>

        It is used to create a static web page. It is a markup language which contains some

        tags in it. It does not have any specific software to be run on.It simply runs on

        notepad. It has the extension of .html or .htm.</p>

    <p>

        It is used to describe how the page will be displayed. It focuses on the formatting

        of the web pages.It contains various tags which are used to provide various types

        of formatting on the content of the web page.</p>

    <p>

        It is not programming language it means it is not processed anymore. It does not

        provides any dynamic functionality in it.</p>

</body>

</html>
 

 

Output

Hi!Today I explain what is HTML. HTML stands for hyper text markup language.

It is not programming language. It is Web Designing language. It means it is used to design a web page.

It is used to create a static web page. It is a markup language which contains some tags in it. It does not have any specific software to be run on. It simply runs on notepad. It has the extension of .html or .htm.

It is used to describe how the page will be displayed. It focuses on the formatting of the web pages. It contains various tags which are used to provide various types of formatting on the content of the web page.

It is not programming language it means it is not processed anymore. It does not provides any dynamic functionality in it.

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.