Here is a technique designed to get an increased SEO advantage from your h1 tag. It is not at all difficult to apply but allows you to have more of your keywords in the title tag.
The idea is to have a subtitle above or below your main title, but instead of having two separate title tags (using a small one such as an h2 or h3 above or below the h1 tag, both the subtitle and regular title are within the h1 tag but styled with html/css.
The first step is to make a css code for a class in your css file or head of the file. If in your css file it would be something like this:
.smaller{
font-size: 80%;
line-height: 80%;
}
Note that in addition to the font size, you need to adjust the line-height or the two lines will be too far apart.
HTML Code:
<h1>Debt Elimination<br /><span class="smaller">Get Out of Debt and Stay That Way</span></h1>
This will produce a title that looks something like this:
Debt Elimination
Get Out of Debt and Stay That Way
Of course you can reverse the order depending on the look you want, like this for example:
HTML Code:
<h1><span class="smaller">Get Out of Debt and Stay That Way</span><br />Debt Elimination</h1>
Get Out of Debt and Stay That Way
Debt Elimination
This technique allows you to include two or more keywords, "Get Out of Debt" and "Debt Elimination" in my example, both in the h1 tag which can make a real difference in your SEO efforts since the h1 tag is one of the most important aspects of on-page SEO. Most of the time I am able to include three keywords in my titles using this technique.