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