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