Computer Science, asked by manendart, 10 months ago

What is the use of Paragraph tag ?​

Answers

Answered by rohit3983
7

Answer:

The <p> tag defines a paragraph. Browsers automatically add some space (margin) before and after each <p> element. The margins can be modified with CSS (with the margin properties).

Explanation:

Explained Browsers usually display HTML paragraphs as text blocks separated by blank lines by default. Dividing the content into separate paragraphs simplifies reading and navigating the page. Note: <p> tags should not be used to insert spaces between

Answered by Anonymous
7

Paragraph tag <P> in HTML language defines the Paragraph on the webpage. When the Paragraph tag is added in a Web page source code, browser understand to add some space before and after the text.

Adding Paragraph in HTML:

HTML is a computer programming language used for creating websites and apps. Every website on the internet is made up of HTML. Because of HTML, Any browser can display us Page format.

CSS and JavaScript are also one of the most important part of any webpage. There is a HTML, java script, CSS on any webpage on internet.

CSS is the design and formatting of the page. while, JavaScript is the background code.

                               

Here is how can you add paragraph in HTML:

<html>  

<body>

<p> Write your paragraph here. Browser will display this written codes. You will have to use < p > at starting of Paragraph. And < P / > at the end.  </p>

</body>  

</html>

                           

After writing this codes, Browser will automatically display your paragraph. You will have to save your code by (name here.html) .html

Learn more:

About HTML: https://brainly.in/question/2174199

About Python: https://brainly.in/question/11007952

Similar questions