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