Is it alright to use multiple h1 tags on the same page, but style them differently?
Posted
by Brad
on Stack Overflow
See other posts from Stack Overflow
or by Brad
Published on 2009-02-02T17:00:19Z
Indexed on
2010/03/27
4:23 UTC
Read the original article
Hit count: 296
I have a webpage that I use h1 tags multiple times within various DIVs and I style h1 for each div to be the appropriate size.
For example...
#content h1 {
font-size:22px;
}
#left-nav h1 {
font-size:14px;
}
#content .recent-news h1 {
font-size:16px;
}
Is this alright? I am worried about SEO.
What is the best way to go about this? Or am I worrying about nothing?
© Stack Overflow or respective owner