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