Use on the webTotal Use [ 3632 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/8cc7c32a51180389318c2f85ae92eeff?family=All+Yoko" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/8cc7c32a51180389318c2f85ae92eeff?family=All+Yoko);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "All Yoko";
src: url("https://db.onlinewebfonts.com/t/8cc7c32a51180389318c2f85ae92eeff.eot");
src: url("https://db.onlinewebfonts.com/t/8cc7c32a51180389318c2f85ae92eeff.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/8cc7c32a51180389318c2f85ae92eeff.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/8cc7c32a51180389318c2f85ae92eeff.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/8cc7c32a51180389318c2f85ae92eeff.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/8cc7c32a51180389318c2f85ae92eeff.svg#All Yoko")format("svg");
}
2CSS rules to specify fonts
font-family: "All Yoko";