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