1. Stáhněte si písma
2. Nahrajte písma na CDN (nebo jakýkoli server) – všechny typy písem, nejen *.eot atd..
3. Vytvořte font-face odkazující na soubory písem
@font-face {
font-family: "Font Name";
src: url('https://www.mlcdn.eu/fonts/font.eot');
src: url('https://www.mlcdn.eu/fonts/font.eot') format('embedded-opentype'),
url('https://www.mlcdn.eu/fonts/font.woff2') format('woff2'),
url('https://www.mlcdn.eu/fonts/font.woff') format('woff'),
url('https://www.mlcdn.eu/fonts/font.ttf') format('truetype');
/* optionaly define font details */
font-weight: normal;
font-style: normal;
}4. Použijte název písma jako font-family :
ml-main * { font-family: 'Font Name', serif; }