Hello, I am using the font, tahoma, on my site. I am using H3 tags because h1 tags are to bulky and awkward no matter what size I reduce them to. Is there a way around this? Using a different font or CSS?
Printable View
Hello, I am using the font, tahoma, on my site. I am using H3 tags because h1 tags are to bulky and awkward no matter what size I reduce them to. Is there a way around this? Using a different font or CSS?
CSS allows you to set font size easily:
You should never let presentation influence what elements you use (like using h3 instead of h1) because CSS can do all that.Code:h1 {
font-size: 16px;
}