Use on the webTotal Use [ 6991 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/488236aa91550c30f904cf26e9dfffdb?family=AnkoPersonalUse-SemiBold" 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/488236aa91550c30f904cf26e9dfffdb?family=AnkoPersonalUse-SemiBold);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "AnkoPersonalUse-SemiBold";
src: url("https://db.onlinewebfonts.com/t/488236aa91550c30f904cf26e9dfffdb.eot");
src: url("https://db.onlinewebfonts.com/t/488236aa91550c30f904cf26e9dfffdb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/488236aa91550c30f904cf26e9dfffdb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/488236aa91550c30f904cf26e9dfffdb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/488236aa91550c30f904cf26e9dfffdb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/488236aa91550c30f904cf26e9dfffdb.svg#AnkoPersonalUse-SemiBold")format("svg");
}
2CSS rules to specify fonts
font-family: "AnkoPersonalUse-SemiBold";