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