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