CODE
<style>
<?php @include(''style.css"); ?>
</style>
but that would have to be in each of the individual frames so itd be just as easy to use the <link rel="...
but seriously, dont use frames. they look like crap. your better off using includes. heres an example using PHP (very basic example just off the top of my head
CODE
<link rel="StyleSheet" href="style.css" Title="Stylesheet for my site" TYPE="text/css">
<table width="800px" blah=blah etc=etc>
<tr>
<td width="200px" rowspan="2">
<?php @include("lefthandmenu.htm");
</td>
<td width="600px">
<?php @include("toprightheader.htm");
</td>
</tr>
<tr>
<td width="600px">
<?php
if (file_exists("pages/".$_GET['p'].".htm")) {
@include("pages/".$_GET['p'].".htm");
} else {
echo "Page not found.<br>Blah Blah";
}
}
?>
</td>
</tr>
</table>
then just add your htm pages to the /pages folder and make sure all you links goto
/page.php?p=nameofhtmfile.htm