Times New Roman on Android devices

For my client, I create a website using the Times New Roman font.

Everything is working fine, with the exception of Android devices (mobile, tablets). Android does not have the Times New Roman font. As far as I know, you can only use the Droid Serif font, which has a different look than Times. In addition, the font size is also different and causes many alignment problems.

Can I use Times New Roman for Android? I know about font, but there is no free website for Times New Roman. Maybe there is an (acceptable) equivalent for this?

Thanks in advance!

+7
source share
1 answer

CSS

@font-face {
    font-family: 'Times New Roman';
    src: url(LiberationSerif-Regular.ttf) format('truetype');
}
@font-face {
    font-family: 'Times New Roman';
    src: url(LiberationSerif-Italic.ttf) format('truetype');
    font-style: italic;
}
@font-face {
    font-family: 'Times New Roman';
    src: url(LiberationSerif-Bold.ttf) format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: 'Times New Roman';
    src: url(LiberationSerif-BoldItalic.ttf) format('truetype');
    font-style: italic;
    font-weight: bold;
}

.zef Liberation Serif, webroot. URL- @font-face , .

0

All Articles