|
To
insert a text or a paragraph into a webpage, you
should use the <p> tag. When defining a text
inside <p> tag, HTML will recognize it as a
traditional paragraph and it will control the line
wrap depending on the text, screen and the
paragraph size. <P> has an ending tag to
define the finish point of each
paragraph.
<p>
This is a text. I am trying to make it longer.
That’s it</p>
Another
way to insert text into a web page, is to write
the text in the html code. But this way isn’t
recommended, as the text will be messy and
non-controllable for formatting and manipulation.
●
Separating Paragraphs:
To
separate paragraphs from each other visually, you
should use <br> tag which break a line
down.
<p>
Text1 </p>
<p>
Text2 </p>
Will
be like this:
Text1
Text2
But
when adding <br> between them it will look
like that:
Text1
Text2
|