Webfont wird im IE nicht angezeigt

Guten Morgen, wie schon oben beschrieben wird im Internet Explorer der Webfont nicht angezeigt. http://therese-accessoires.de Die für den IE zuständige Einbindung ist da - hatte bisher auch nie Probleme beim einbinden von Schriften. src: url(’…/font/lucida-handwriting-regular-italic.eot?#iefix’) format(‚embedded-opentype‘), Hat jemand eine Idee warum der IE hier so rumzickt? Vielen Dank kleiner_Punkt

hallo, eventuell liegt es daran dass, unter IE 9 alle Versionen einen Bug im Parser für das src-Attribut haben. Nutze @font-face um Webfonts zu nutzen, damit solltest du hin kommen. Ein kleines Codeschnipsel zur Erklaerung: @font-face { font-family: ‘MyFontFamily’; src: url(‘myfont-webfont.eot#’) format(‘eot’), url(‘myfont-webfont.woff’) format(‘woff’), url(‘myfont-webfont.ttf’) format(‘truetype’), url(‘myfont-webfont.svg#svgFontName’) format(‘svg’); } alles gute, herb

Guten Morgen Herb, vielen Dank für deine Antwort, aber ich hab doch die Einbindung mit font-face !!! @font-face { font-family: ‚Lucida Handwriting Regular Italic‘; src: url(’…/font/lucida-handwriting-regular-italic.eot’); src: url(’…/font/lucida-handwriting-regular-italic.eot?#iefix’) format(‚embedded-opentype‘), url(’…/font/lucida-handwriting-regular-italic.woff’) format(‚woff‘), url(’…/font/lucida-handwriting-regular-italic.ttf’) format(‚truetype‘), url(’…/font/lucida-handwriting-regular-italic.svg#ywftsvg’) format(‚svg‘); font-weight: normal; font-style: normal; } das ist die Einbindung auch ein ändern der scr: Reihenfolge hilft nicht. Noch eine Idee?? Besten Dank kleiner_Punkt