Files
iTop/pages/php-ofc-library/ofc_title.php
2009-04-28 09:03:12 +00:00

15 lines
237 B
PHP

<?php
class title
{
function title( $text='' )
{
$this->text = $text;
}
function set_style( $css )
{
$this->style = $css;
//"{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";
}
}