1. <?php
  2.  
  3. class foo {
  4.  
  5. //... class goes here ...
  6.  
  7. }
  8.  
  9. ?>
  10. <html>
  11. <!-- all of my page stuff and CSS goes here -->
  12. <?php
  13. $myClass = new foo();
  14. $myClass->output();
  15. ?>
  16. </html>