ofc_title.php 237 B

123456789101112131415
  1. <?php
  2. class title
  3. {
  4. function title( $text='' )
  5. {
  6. $this->text = $text;
  7. }
  8. function set_style( $css )
  9. {
  10. $this->style = $css;
  11. //"{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";
  12. }
  13. }