Hi,
I was wondering if anyone knew what fonts a Kobo (Aura One specifically) chooses for its fallback fonts? The reason I ask is I'm assembling some books for my kid and I find that using bare "monospace" as a font-family doesn't seem to work for me.
In the sample code below, I see the first paragraph in a serif font, the second in a sans font, and the third paragraph looks like the first one.
Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<p style="font-family: serif">This paragraph is in serif font.</p>
<p style="font-family: sans-serif">This paragraph is in sans-serif font.</p>
<p style="font-family: monospace">This paragraph is in monospace font.</p>
</body>
</html>