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