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>

!MathJax

{{{highlight html <!DOCTYPE html> <html dir="ltr" lang="en" xml:lang="en"> <head> <script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'></script> </head> <body> <p> Hello: $$z = -2.5$$<br/> <table border="1"> <tr>

</tr> <tr>

</tr> </table> Choose an equation: <select>

</select> </p><p>It seems like you should be able to do inline \(E=mc^2\) or on display $$E=mc^2$$ Math. </p> </body> </html> }}}