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