instead of using a specific font-family in the Extra CSS, just use sans-serif and serif as the font-family like these
@font-face {
font-style: normal;
font-family: sans-serif;
font-weight: normal;
src: url(res:///Data/fonts/DejaVuSans.ttf);
}
@font-face {
font-style: normal;
font-family: serif;
font-weight: bold;
src: url(res:///Data/fonts/DejaVuSans-Bold.ttf);
}
I prefer sans-serif so I use the sans-serif font for serif.
|