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