Re: Define CSS (Newbie) [Resolved]
ok - makes sense now. Thanks all for the info.
Re: Define CSS (Newbie) [Resolved]
Quote:
Originally Posted by Mike Hildner
ok - makes sense now. Thanks all for the info.
You can also use style tags inline... in the <head> section of a webpage, if you wish to customize that page seperately from an externally referenced stylesheet.
Code:
<head>
<style type="text/css">
.h1 { font-family: verdana,arial,helvetica,sans-serif; color: #CC6600; font-size: medium; }
.h1color { font-family: verdana,arial,helvetica,sans-serif; color: #CC6600; font-size: small; }</style>
</head>