I have to choose a font for a web application that produces a printable view of some text (long text, no colors, white background).
Example here.
Users will read this printable view in these possible ways:
- From pc\Ereader (after saving it in html)
- From pc\Ereader (after "printing" it in Pdf, mac users will natively do it)
- From paper
Temporarily i have chosen the web workhorse Georgia font for the screen reading, and although my css has a @media print
directive, i have not yet redefined any different print font.
In few words, i don't know if i should differentiate the printing font from the one for screen;
changing the @media print
font will affect also the 2.pc\Ereader users that like to read their Pdf on screen.
So i'm searching for a font that should satisfy these requirements:
1. Should have a good compromise in term of readibility\legibility for printing and screen reading
2 (bonus). Should handle strange unicode characters (Georgia is missing something here)
Any hints?
Any better approach?