124k views
1 vote
How do I make paragraphs in HTML coding?

User BarneyL
by
7.5k points

2 Answers

5 votes
When I was coding used the enter button and it worked for me
User Raevik
by
8.6k points
1 vote
You can use the <p> tag.

<p>Your paragraph here.</p>

Multiline:

<p>
Some text.
Some more text.
Some more text because you need more text.
</p>
User Yocheved
by
7.7k points