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