-
<p>
The <p></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).
Example:
<p>This is some text in a paragraph.</p>
-
<h1> through <h6>
The <h1>-</h1> through <h6>-</h6> tags define a heading. <h1> define the most important heading. <h6> defines the least important heading. Search engines use the headings to index the structure and content of your web pages.
Example:
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
-
<br>
The <br> (also <br/>) tag inserts a single line break in the text. It is useful for writing addresses or poems. It is an empty tag which means that it has no end tag. Use it to enter line breaks, not to add space between paragraphs.
Example:
The rose is red, <br>
The violet's blue. <br/>
Sugar is sweet, <br>
And so are you.