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