Add page break on HTML page
Sometimes we want to add a page break on specific part on the page for printing. We can do it with simple css method for adding page break on specific part that you want a page break is occur.
So when you need to add page break on specific place, you just need to add this html code :
<p style="page-break-before: always">
on part that you want a page break occur.
for example :
<p>This is page 1</p>
<p style="page-break-before: always">
<p>This is page 2</p>
If we print this html, we will have two pages printed.