Forum Moderators: open
<h1><small>My header title</small></h1>
I use a content management system and for some reason the title keeps showing up as large font instead of small but at least its a little smaller than the default h1 size.
Having that small tag is ok for seo? Is there any way to get it smaller?
TY
<h1 style="font-size:14px;font-family:verdana;color:red">Hello World!</h1>
Better still, create an external CSS file and reference it, for example:
<h1>Hello World</h1>
Put the following in a file called style.css:
H1 {font-size:14px;font-family:verdana;color:red}
Then, put the following in your <head> tags:
<link rel="stylesheet" href="style.css" type="text/css">
Voila! You can now control your tag styles. You would be wise to brush up on your CSS skills too, I recommend using W3Schools to learn the basics.