Code:
@font-face {
font-family: "minya";
font-weight: normal;
font-style: normal;
src: url("../Fonts/minya-reg.ttf")
}
@font-face {
font-family: "minya";
font-weight: bold;
font-style: normal;
src: url("../Fonts/minya-bd.ttf")
}
@font-face {
font-family: "minya";
font-weight: normal;
font-style: italic;
src: url("../Fonts/minya-it.ttf")
}
That gets rid of all the garbage you had and correctly sets the font-family.
Code:
body {
font-family: "minya";
}
That's all you need. When you make the text italic or bold, it will use the correct font style.