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