What is that HTML tag for showing text content as it actually appears in the html file. If you use it, you do not have to worry about <br> because it does a line break exactly as it appears.
the <pre> tag <pre>the pre tag keep all the spaces and line breaks</pre> Code (markup): you can also do it with CSS: <p style="white-space:pre">css to keep all the spaces and line breaks</p> Code (markup):