This is a generic paragraph. The style is: font-family:helvetica, arial, san-serif; font-size:3em; color:red

This is a paragraph of class 'alt'. The style is: font-family:"courier new", monospace; font-size:1.5em; color:blue



Source below:

<html><head><title>Style test for Netscape</title>
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon' />
<style type="text/css">
 p {font-family:helvetica, arial, san-serif; font-size:3em; color:red}
 p.alt {font-family:"courier new", monospace; font-size:1.5em; color:blue}
</style>
</head>
<body>
<p>This is a generic paragraph.  The style is: font-family:helvetica, arial, san-serif; font-size:3em; color:red</p>
<p class="alt">This is a paragraph of class 'alt'.  The style is: font-family:&quot;courier new&quot;, monospace; font-size:1.5em; color:blue</p>
<br />
<br />
<h5>Source below:</h5>
<hr />
<?php
 
//show_source("$DOCUMENT_ROOT/$PHP_SELF");
 
show_source(".." "{$_SERVER['PHP_SELF']}");
?>
</body></html>