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