
Originally Posted by
ChrisjChrisj
I realize my methods may be out of the html stone-age
I think technically we're talking Jurassic age, actually. 
There's a fair chance you'll use those styles again, so I'd say use spans with a class instead.
Code:
<div class="box1">
<span class="something">This Is The Headline</span>
<span class="somethingelse">This is the additional text.</span>
</div>
Code:
.something {font-size: 12px; font-family: tahoma;}
.somethingelse {font-size: 5px; font-family: arial;}
.box1 span {dispaly: block;}
Using inline code like you have is just not viable these days. It's just so inefficient, with no advantages. CSS also gives you so many more options.
Bookmarks