* @copyright 2003-2009 Klaus Guenther, Laurent Laville
* @license http://www.opensource.org/licenses/bsd-license.php BSD
* @version CVS: $Id: CSS_InHeader.php,v 1.13 2009/01/19 23:22:38 farell Exp $
* @link http://pear.php.net/package/HTML_CSS
* @ignore
*/
require_once 'HTML/Page2.php';
require_once 'HTML/CSS.php';
// generate an instance
$css = new HTML_CSS();
// define the various settings for
$css->setStyle('body', 'background-color', '#0c0c0c');
$css->setStyle('body', 'color', '#ffffff');
// define element
$css->setStyle('h1', 'text-align', 'center');
$css->setStyle('h1', 'font', '16pt helvetica, arial, sans-serif');
// define
element
$css->setStyle('p', 'font', '12pt helvetica, arial, sans-serif');
// create a new HTML page2 instance
$p = new HTML_Page2();
$p->setTitle("My page");
// it can be added as an object
$p->addStyleDeclaration($css, 'text/css');
$p->setMetaData('author', 'My Name');
$p->addBodyContent('
headline
');
$p->addBodyContent('some text
');
$p->addBodyContent('some more text
');
$p->addBodyContent('yet even more text
');
// output the finished product to the browser
$p->display();
// or output the finished product to a file
//$p->toFile('example.html');
?>