xxxxxxxxxx
<div style="page-break-before: always"></div>
xxxxxxxxxx
/* move to a new page after footnotes */
div.footnotes {
page-break-after: always;
}
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<style>
.page-break {
page-break-after: always;
}
</style>
</head>
<body>
<h1>Page 1</h1>
<p>This is the content of page 1.</p>
<div class="page-break"></div>
<h1>Page 2</h1>
<p>This is the content of page 2.</p>
</body>
</html>