answersLogoWhite

0

What is the function in paragraph in HTML?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

A paragraph, or "P" tag, is used to denote that the element contains text and should be indented or styled as a paragraph. It creates a block-level element with line breaks around it.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the function in paragraph in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is required to start new paragraph HTML document?

In an HTML document, to start a new paragraph, the <p> tag is used. Here p stands for paragraph and will start a new para.


What does p stand fro in HTML?

Paragraph.


What is the function of HTML in a webpage?

The function of HTML as a scripting language is limited to it's design. All the design developed can be viewed by HTML.


How do you add a paradraph in HTML?

Paragraphs are controlled by HTML <p></p> tags. Here is an example of two paragraphs: <p>This is paragraph 1.</p> <p>This is paragraph 2.</p>


What are the alignments for Ptag in HTML?

<p> tag is used to define paragraph in HTML. It could be aligned anywhere in the page.


Webpages are primarily made up of what type of files?

The H.yper T.ext M.arkup L.anguage (HTML) is the building block of all web pages. Web pages are made with HTML instructions in a text file. * All Web pages contain instructions on how to be displayed * The browser displays the page by reading these instructions * The most common display instructions are called HTML tags * The HTML tag for a paragraph looks like this: "" * A paragraph in HTML is defined like this "This is a paragraph"


What do you call the part of the HTML script that is inclosed in angle brackets?

The part of HTML in angle brackets are called tags. A common tag is a paragraph tag: <p>Paragraph text goes here.</p>.


What HTML tag is used to create a paragraph break?

Use tags. Here are some examples of how to use them:This is my first paragraph. I would like for there to be a break between my paragraphs so I am splitting them up with p tags.This is my second paragraph, there will be a line break between this paragraph and the one above it. This is the default practice of most browsers.Alternatively you can write your text as a block with tags as line breaks. ie:This is my first paragraph. I would like for there to be a break between my paragraphs so I am inserting br tags between them.This is my second paragraph, there will be a line break between this paragraph and the one above it due to my tag.


What is a paragraph tag?

A paragraph tag is used within HTML syntax to create a section of text that the webpage interprets as a singular chunk (similar to a paragraph). Within HTML code, use the tags <p> and </p> to denote data you want to display within the paragraph. For instance: <p>Text I want to display.</p>


How are paragraphs recognised in HTML?

With the tag.The first paragraph The second paragraph TechnicalA paragraph is a block element, which means it naturally takes up the whole width of the page.


What is the function of the HTML in wed page?

The function of HTML is to create a layout in Web page. It constructs the design of the page smoothly.


Which type of tags HTML uses?

HTML uses markup languages for it's functionality. It uses <p> for paragraph, <a> for hyperlink etc.