Home  >  Article  >  Web Front-end  >  The role and tutorial of HTML paragraphs

The role and tutorial of HTML paragraphs

零下一度
零下一度Original
2017-05-16 14:18:371510browse

HTML can divide the document into several paragraphs.

HTML Paragraph

Paragraphs are defined through the e388a4556c0f65e1904146cc1a846bee tag.

Example

<p>This is a paragraph </p>
<p>This is another paragraph</p>

Note: The browser will automatically add blank lines before and after the paragraph. (94b3e26ee717c64999d7867364b1b4a3 is a block-level element)

Don’t forget the closing tag

Even if you forget to use the closing tag, most browsers will display the HTML correctly:

<p>This is a paragraph
<p>This is another paragraph

The above example will work fine in most browsers, but don't rely on this approach. Forgetting to use closing tags can produce unexpected results and errors.

Note: In future versions of HTML, omitting the closing tag will not be allowed.

HTML Line Break

If you want to wrap (new line) without creating a new paragraph, use the df250b2156c434f3390392d09b1c9563 tag:

Example

<p>This is<br>a para<br>graph with line breaks</p>

df250b2156c434f3390392d09b1c9563 element is an empty HTML element. Since a closing tag doesn't make any sense, it doesn't have a closing tag.

HTML Output - Usage Reminder

We cannot determine the exact effect of the HTML being displayed. The size of the screen, as well as adjustments to the window, may lead to different results.

With HTML, you cannot change the output by adding extra spaces or line breaks to the HTML code.

When displaying the page, the browser will remove extra spaces and blank lines in the source code. All consecutive spaces or empty lines are counted as one space. Note that all consecutive empty lines (newlines) in HTML code are also displayed as a single space.

Try it

(This example demonstrates some HTML formatting issues)

[Related recommendations]

1. Special recommendation: "php Programmer Toolbox" V0.1 version download

2. Free html online video tutorial

3. php.cn original html5 video tutorial

The above is the detailed content of The role and tutorial of HTML paragraphs. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What does HTML header do?Next article:What does HTML header do?