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