What is the example of a paragraph tag????
Answers
<p> tag is used to start a new paragraph.
it has align attribute which can have values right, left or justify
example- <p align="justify">
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