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