Your text is not properly coded. You are using
Code:
<p>Text 1<br />
Text 3<br />
Text 4<br />
Text 5</p>
When you should use
Code:
<p>Text 1</p>
<p>Text 2</p>
<p>Text 3</p>
<p>Text 4</p>
<p>Text 5</p>
NEVER use <br />. It doesn't show the same in different platforms.