How to Make texts in H1 tags appear "small"

oscarmike

Regular Member
Joined
Sep 16, 2011
Messages
237
Reaction score
45
Hi Guys!

Could you help me figure out how i could make texts wrapped in H1 tags appear small? I am not happy with the current output where the keywords i am "optimizing" (using H1 tags) are so much bigger that the other texts that they look ugly and out of place. :(

I remember that i have read it here before but i cant seem to find it using the search button. I have also googled it but i cant find good instructionals. :(

TIA guys!
 
Code:
<h1 style="font-size:50%;">This is small h1</h1>

though it's better to move to external css.
 
or

Code:
<h1 style="font-size:15px;">This is small h1</h1>

Where you can change the px value to whatever size you want
 
Back
Top