I have a css file with this code and apostrophe is not embedding for
me. I thought the unicode value was U+0027 and but it's still now
showing up. Can anyone help? It's driving me crazy!
Thanks
@font-face
{
src: url("assets/VectoraODisp-Bold.ttf");
fontFamily: vectora;
fontWeight:bold;
advancedAntiAliasing: true;
unicode-range:
U+0021-U+007B,
U+0020-U+0040, /* Punctuation, Numbers */
U+0021-U+002F, /* Punctuation and Symbols */
U+0041-U+005A, /* Upper-Case A-Z */
U+005B-U+0060, /* Punctuation and Symbols */
U+0061-U+007A, /* Lower-Case a-z */
U+007B-U+007E; /* Punctuation and Symbols */
}
@font-face
{
src: url("assets/VectoraODisp-BoldItalic.ttf");
fontFamily: vectora;
fontWeight:bold;
fontStyle:italic;
advancedAntiAliasing: true;
unicode-range:
U+0021-U+007B,
U+0020-U+0040, /* Punctuation, Numbers */
U+0021-U+002F, /* Punctuation and Symbols */
U+0041-U+005A, /* Upper-Case A-Z */
U+005B-U+0060, /* Punctuation and Symbols */
U+0061-U+007A, /* Lower-Case a-z */
U+007B-U+007E; /* Punctuation and Symbols */
}