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