Tuesday, April 10, 2012

HTML Beginner tutorial 6 HTML Paragraphs

HTML documents are divided into paragraphs.
HTML Paragraphs
Paragraphs are defined with the <p> tag.
For example

<p>The sun rises in the east</p>
<p>Honesty is the best policy</p>

Browsers automatically add an empty line before and after a paragraph.

Don't Forget the End Tag
Most browsers will display HTML correctly even if you forget the end tag.
For example

<p>The sun rises in the east
<p>Honesty is the best policy

The example above will work in most browsers, but don't rely on it. Forgetting the end tag can produce unexpected results or errors.
Future version of HTML will not allow you to skip end tags.

HTML Line Breaks
Use the <br /> tag if you want a line break (a new line) without starting a new paragraph:
For example

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

The <br /> element is an empty HTML element. It has no end tag.

<br> or <br />

In XHTML, XML, elements with no end tag (closing tag) are not allowed.
Even if <br> works in all browsers, writing <br /> instead works better in XHTML and XML applications.

HTML Output
You cannot be sure how HTML will be displayed. Large or small screens, and resized windows will create different results.
With HTML, you cannot change the output by adding extra spaces or extra lines in your HTML code.
The browser will remove extra spaces and extra lines when the page is displayed. Any number of lines count as one line, and any number of spaces count as one space.

HTML Text Formatting  >>
<<  HTML Headings

No comments:

Post a Comment