HTML Paragraphs
In HTML, paragraphs are defined with the <p> tag.
EXAMPLE:
<p>First paragraph</p>
<p>Second paragraph</p>
<p>Second paragraph</p>
HTML Line Breaks
Use the <br> tag if you want a line break (a new line) without starting a new paragraph.
EXAMPLE:
<p>This is<br>a para<br>graph with line breaks</p>
OUTPUT IN BROWSER:
This is
a para
graph with line breaks
a para
graph with line breaks
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.
No comments:
Post a Comment