HTML Paragraphs 📌
When we use a <p>
tag, it will create a
paragraph. Also it is a block element.
HTML Paragraphs
The HTML <p>
defines a paragraph. It is a
block element.
A paragraph always starts with a new line, and the browser
will automatically add some white space before and after the
paragraph.
Example:-
Result:-

HTML Display
When it comes to display, You cannot arrange them using
extra space or create a new line. In short, you can not do
anything in this way.
BUT! Don't worry we will fix that up in our upcoming
lectures. The is really a beautiful way to fix this. Not
right now.
Example:-
Info:- As you can see we create two paragraphs with a different styles. What did you think, What web page will display?
Result:-

HTML Line Breaks
We use <br>
element to create a line
break.
Example:-
Result:-

Let's talk about Poem
Some time we need right some poem to display.
But if you doing in previous way then it will not work.

Now question how we will create this. Without using
<br>
tag
Solution:-
We need to use <pre>
for this.
Tag Reference
Tag | Description |
---|---|
<p> | Defines a paragraph |
<br> | Inserts a single line break |
<pre> | Defines pre-formatted text |