My problem is so weird, I should display the following letters ø å Å Ø
but I see øåÅØ
,
This is my code:
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css" charset="utf-8" />
</head>
<body>
<p class="denmark-font">
øåÅØ
</p>
</body>
</html>
And this is my css
code:
@font-face {
font-family: 'denmarkregular';
src: url('denmark-webfont.eot');
src: url('denmark-webfont.eot?#iefix') format('embedded-opentype'),
url('denmark-webfont.woff') format('woff'),
url('denmark-webfont.ttf') format('truetype'),
url('denmark-webfont.svg#denmarkregular') format('svg');
font-weight: normal;
font-style: normal;
}
.denmark-font{
font-family: 'denmark-webfont', Arial, sans-serif;
font-size:50px;
}