Horje

Tips (Total 6)


# Tips-1) What is HTML Paragraphs

The HTML <p> element defines a paragraph.

A paragraph always starts on a new line, and browsers automatically add some white space (a margin) before and after a paragraph.

Sample of HTML Paragraphs

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

Full Example of HTML Paragraphs

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

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

</body>
</html>

Output should be:

Full Example of HTML Paragraphs

# Tips-2) How to display HTML Paragraphs

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 display by adding extra spaces or extra lines in your HTML code.

The browser will automatically remove any extra spaces and lines when the page is displayed:

Sample of displaying HTML Paragraphs

<p>
This paragraph
contains a lot of lines
in the source code,
but the browser 
ignores it.
</p>

<p>
This paragraph
contains      a lot of spaces
in the source     code,
but the    browser 
ignores it.
</p>

<p>
The number of lines in a paragraph depends on the size of the browser window. If you resize the browser window, the number of lines in this paragraph will change.
</p>

Full Example of displaying HTML Paragraphs

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<p>
This paragraph
contains a lot of lines
in the source code,
but the browser 
ignores it.
</p>

<p>
This paragraph
contains      a lot of spaces
in the source     code,
but the    browser 
ignores it.
</p>

<p>
The number of lines in a paragraph depends on the size of the browser window. If you resize the browser window, the number of lines in this paragraph will change.
</p>

</body>
</html>

Output should be:

Full Example of displaying HTML Paragraphs

# Tips-3) How to create HTML Horizontal Rules

The <hr> tag defines a thematic break in an HTML page, and is most often displayed as a horizontal rule.

The <hr> element is used to separate content (or define a change) in an HTML page:

Sample of HTML Horizontal Rules

To understand HTML Horizontal Rules We give below codes
<h1>This is heading 1</h1>
<p>This is some text.</p>
<hr>

Full Example of HTML Horizontal Rules

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>This is heading 1</h1>
<p>This is some text.</p>
<hr>

<h2>This is heading 2</h2>
<p>This is some other text.</p>
<hr>

<h2>This is heading 2</h2>
<p>This is some other text.</p>

</body>
</html>

Output should be:

Full Example of HTML Horizontal Rules

# Tips-4) How to create HTML Line Breaks

The HTML <br> element defines a line break.

Use <br> if you want a line break (a new line) without starting a new paragraph:

Sample of HTML Line Breaks

<p>This is<br>a paragraph<br>with line breaks.</p>

Full Example of HTML Line Breaks

The <br> tag is an empty tag, which means that it has no end tag.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<p>This is<br>a paragraph<br>with line breaks.</p>

</body>
</html>

Output should be:

Full Example of HTML Line Breaks

# Tips-5) What is the Poem Problem in HTML Paragraphs

This poem will display on a single line:

Sample of Poem Problem in HTML Paragraphs

<p>

  My Bonnie lies over the ocean.

  My Bonnie lies over the sea.

  My Bonnie lies over the ocean.
  
  Oh, bring back my Bonnie to me.

</p>

Full Example of Poem Problem in HTML Paragraphs

This poem will display on a single line:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<p>In HTML, spaces and new lines are ignored:</p>

<p>

  My Bonnie lies over the ocean.

  My Bonnie lies over the sea.

  My Bonnie lies over the ocean.
  
  Oh, bring back my Bonnie to me.

</p>

</body>
</html>

Output should be:

Full Example of Poem Problem in HTML Paragraphs

# Tips-6) How to create <pre> Element in HTML Paragraphs

The HTML <pre> element defines preformatted text.

The text inside a <pre> element is displayed in a fixed-width font (usually Courier), and it preserves both spaces and line breaks:

Sample of HTML <pre> Element in HTML Paragraphs

The pre tag preserves both spaces and line breaks:
<pre>
   My Bonnie lies over the ocean.

   My Bonnie lies over the sea.

   My Bonnie lies over the ocean.
   
   Oh, bring back my Bonnie to me.
</pre>

Full Example of HTML <pre> Element in HTML Paragraphs

The pre tag preserves both spaces and line breaks:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<p>The pre tag preserves both spaces and line breaks:</p>

<pre>
   My Bonnie lies over the ocean.

   My Bonnie lies over the sea.

   My Bonnie lies over the ocean.
   
   Oh, bring back my Bonnie to me.
</pre>

</body>
</html>

Output should be:

Full Example of HTML <pre> Element in HTML Paragraphs