Ok so if you have’nt heard of the H1 tag, its a header tag which uses a larger font and it’s styled in upper case and bold by default. The search engine’s love this tag as it is used to show the most important keyword of the page and help to rank the page accordingly. Put two of three of your keywords in this tag or one phrase, get it as close to the <body> tag as you can, its prominence needs to be as close to 100% as you can get.
DO NOT put more than 1 H1 tag on a page as will decrease the weight of the keywords. Put all other secondary keywords in h2 and h3 tags.
Other than the title tag this is probably the most important tag!
An example of an h1 tag would be <h1>Search Engine Optimisation</h1>. In general h1 tags are pretty ugly and can mess up the asthetics and overal design of page. There is a solution, use css to style the tag, an exaple of the tag and css to use is set out below.
<div id=”heading1″><h1 class=”heading1style”>Search Engine Optimisation</h1></div>
The CSS element would be -
#heading1 {
margin-top: 4px;
margin-left: 5px;
width: 500px;
height: 25px;
float: left;
}
.heading11style {font-size: small; color: #666; margin:2px; font-weight:100;
}
You can change the elements within the CSS to set out the div and the styling for the H1.
Recent Comments