i would like to show this text in my html code:
<html>
Name 1
Name 2
Managers
</html>
I tried to do this but then in the site it shows like this:
Name 1 Name 2 Managers.
If I put <p>
on it, it will show like this:
<html>
<p>Name 1 </p>
<p> Name 2 </p>
<p> Managers </p>
The result is this:
Name 1
Name 2
Managers
Is there any code how to keep this single like?
Thanks