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