I have begun creating a new website and this time I really want to make sure I get cross-browser issues dealt with because I see this as being extremely important for my own development skills.
In both Chrome & Firefox, the text I have styled appears as I would expect it to style. This is not the case in IE. In fact what appears in IE is not too different to the font I am writing in here.
Below is the code in my css..
h.title{
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans serif;
color:#060;
font-size:30px;
}
Below is html
<h class="title">Contact</h>
View in Chrome and Firefox..
View in IE
Any help/explanations would be appreciated many thanks.