Jump to content

{Tutorial}HTML Paragraphs.Step 7.


MrHotFire

Recommended Posts

HTML Paragraphs

 

Paragraphs are defined with the <p> tag.

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

Note: 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:

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

 

The example above will work in most browsers, but don't rely on it. Forgetting the end tag can produce unexpected results or errors.

 

Note: 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:

<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.

 

HTML Output - Useful Tips

 

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.

 

Credits Olympus,Internet,ME.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...