Just a collection of HTML odds and ends

How to create a page break

   1 <html>
   2 <body>
   3 
   4 This is the text for page #1.
   5 
   6 <p style="page-break-before: always">
   7 
   8 Page #2...
   9 
  10 <p style="page-break-before: always">
  11 
  12 Page #3...
  13 
  14 </body>
  15 </html>