CSS allows you to set font size easily:

Code:
h1 {
  font-size: 16px;
}
You should never let presentation influence what elements you use (like using h3 instead of h1) because CSS can do all that.