Forum Moderators: not2easy
have to seperate <h1> class's
i want a size 16 font <h1> and a size 10 <h1>
I generally only use one h1 on each page, being the header (title) of the page. From there, I use h2-h6's..
CSS h1.first { font-size: X; } h1.second { font-size: Y; }
HTML <h1 class="first"> Text </h1> <h1 class="second"> Text </h1>
thanks