hes right, best thing to do is make a gigantic css file for the whole site and have your common header(if you have one) link to it. i think every html tag can have styles, by a few methods:
<tag id="id" or
<tag class="class" or
<tag style="style:value"
so to setup all h1's the same or just make a general type you can do this:
<style>
h1 {font-size:10pt; color:black}
// or global
.9 {font-size:9pt; color:black}
</style>
and use <h1> (if using the first style ) or <h1 class=9> if using the 2nd one