View Single Post
Old 08-23-2017, 09:08 AM   #10
Ghitulescu
Fanatic
Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.Ghitulescu ought to be getting tired of karma fortunes by now.
 
Posts: 563
Karma: 403106
Join Date: Aug 2014
Device: PRS-T1
There's no difference except the fonts' name. The font names have been changed by calibre, that's they are different from yours. I added the ; myself to the last line.
Code:
@font-face {
	src: url(fonts/Georgia-Bold.ttf);
	font-weight: bold;
	font-family: "Georgia";
	font-style: normal;
}

@font-face {
	font-style: italic;
	src: url(fonts/Georgia-Bold-Italic.ttf);
	font-weight: bold;
	font-family: "Georgia";
}

@font-face {
	font-style: italic;
	src: url(fonts/Georgia-Italic.ttf);
	font-family: "Georgia";
	font-weight: normal;
}

@font-face {
	src: url(fonts/Georgia.ttf);
	font-family: "Georgia";
	font-style: normal;
	font-weight: normal;
}
Ghitulescu is offline   Reply With Quote