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