<?php header("Content-type: text/css"); //setting header content. $colorVal = 'red'; $hTagSize = '2em'; $hTagColor='blue'; ?>
p { color: <?php echo $colorVal; ?>; font-weight: bold; font-size: 1.2em; text-align: left; } h1 { color: <?php echo $hTagColor; ?>; font-size:<?php echo $hTagSize; ?>; text-align: centre; }