answersLogoWhite

0

What does the 'p' mean in HTML?

User Avatar

Anonymous

11y ago
Updated: 8/20/2019

The <p> tag defines a paragraph. The <p> tag is supported in all major browsers. It is possible to align the text left, right, center or justified using the p tag.

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

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

How do you add a paradraph in HTML?

Paragraphs are controlled by HTML &lt;p&gt;&lt;/p&gt; tags. Here is an example of two paragraphs: &lt;p&gt;This is paragraph 1.&lt;/p&gt; &lt;p&gt;This is paragraph 2.&lt;/p&gt;


Java script is case sensitive or not?

HTML was designed to allow for any variation of case in the tags. However, new HTML 5 and CSS rules require your HTML tags to be in lower case. For example &lt;P&gt;&lt;/P&gt; would be acceptable in HTML 4, but &lt;p&gt;&lt;/p&gt; would be required under the HTML 5 standards.


Sntax of HTML?

&lt;p&gt; Its tag based &lt;/p&gt;


How do you type Tamil in HTML?

&lt;p&gt;Tamil&lt;/p&gt;


How are paragraphs reconized in an HTML?

HTML denotes paragraphs by the use of what are called "p tags" In the code, &lt;p&gt; opens a paragraph while &lt;/p&gt; closes one.


What does p stand fro in HTML?

Paragraph.


How do you make an HTML on your website silent?

You could comment it... &lt;!---&lt;p&gt;(Commented)&lt;/p&gt;--&gt;


What is the Meaning of p tag in HTML?

&lt;p&gt; tag means new paragraph


Example of webpage in HTML?

If you want to see an example HTML code for a web page, you can simply right click on any web page and select "display source code". In Microsoft Internet Explorer, you can click View Source in the toolbar. A Quick Example: &lt;html&gt; &lt;head&gt; &lt;title&gt;THE TITLE OF THE PAGE&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;Hello, This Is An Example Page&lt;/p&gt; &lt;br&gt; &lt;br&gt; &lt;p&gt;This Is Another Paragraph&lt;/p&gt; &lt;p&gt;And So Is This&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; As you can see, HTML pages work around tags. (E.g. &lt;html&gt; and &lt;/html&gt;) ---------------------------------- Some basic tags: &lt;html&gt; &amp; &lt;/html&gt; -- start and end of the page &lt;head&gt; &amp; &lt;/head&gt; -- properties hidden to the user, such as page title &lt;body&gt; &amp; &lt;/bdoy&gt; -- the page's body, the actual website the user will see &lt;title&gt; &amp; &lt;/title&gt; -- page title, this has to be inside the &lt;head&gt; section &lt;br&gt; -- line break (like pressing enter) &lt;p&gt; &amp; &lt;/p&gt; -- a paragraph of text ---------------------------------- For examples with clear HTML code, see related links.


What is basic HTML code?

Below is an example of a very basic webpage: &lt;html&gt; &lt;head&gt; &lt;title&gt;My First Webpage&lt;/title&gt; &lt;/head&gt; &lt;body bgcolor="yellow"&gt; &lt;p&gt;This is a yellow webpage&lt;/p&gt; &lt;/body&gt; &lt;/html&gt;


Where do you write javascript?

JavaScript is written in an HTML document. You start it with this tag:and end it with:


What is a style sheet that lets you add a style to an individual HTML tag?

The CSS declaration that allows you to select an individual HTML tag is the id selector. For instance: #ourP {color: red;} &lt;p id="ourP"&gt;This text will be red&lt;/p&gt; &lt;p&gt;Not this text, though&lt;/p&gt; If you want to select a particular type of HTML tag (like, say, all the paragraphs) you use an element selector like so: p {color:blue} &lt;p&gt;This text will be blue&lt;/p&gt; &lt;p&gt;This too&lt;/p&gt;