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