html use linebreaks in p code example
Example 1: new line html
<!-- Code by Scratchy -->
<!-- Twitter: @S_cratchy-->
Line 1 of text
<br>
Line 2 of text
Example 2: how to add a paragraph in html
//first add a body tag
<body>
write stuff here
</body>
//or you can do this
<body>
<p>write stuff here</p>
</body>
//thanks for reading