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