I use font-face and web font on my own website:
@font-face {
font-family: 'example';
src: url('example.eot') format('eot'),
url('example.woff') format('woff'),
url('example.ttf') format('truetype');
}
If client has the font installed with the same name, client font is loaded instead of web font. Is there any solution to load the web font instead of the local font?