@Skinjob, here is the different code for you to try. Jut change the name of the fonts to match that of the fonts you've put in the fonts directory.
At first, put this code in manually to see what happens. You will have to rename the fonts as what's here for the font names is incorrect.
Code:
body {
font-family: georgia, serif;
widows: 0;
orphans: 0;
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
text-align: justify;
}
@font-face {
font-family: georgia;
font-weight: normal;
font-style: normal;
src: url(res:///Data/fonts/GenBkBasR.ttf)
}
@font-face {
font-family: georgia;
font-weight: bold;
font-style: normal;
src: url(res:///Data/fonts/GenBkBasB.ttf)
}
@font-face {
font-family: georgia;
font-weight: normal;
font-style: italic;
src: url(res:///Data/fonts/GenBkBasI.ttf)
}
@font-face {
font-family:georgia;
font-weight: bold;
font-style: italic;
src: url(res:///Data/fonts/GenBkBasBI.ttf)
}