How to use HTML paragraph <p> Tag

2 Answers

0 votes
<!DOCTYPE html>
<html>
    <body>

        <p>Text<br />text<br />text</p>

    </body>
</html>

<!--
run:

Text
text
text

-->

 



answered Dec 1, 2018 by avibootz
0 votes
<!DOCTYPE html>
<html>
    <body>

        <p>Text text text
            text text
            text
        </p>

    </body>
</html>

<!--
run:

Text text text text text text 

-->

 



answered Dec 1, 2018 by avibootz
...