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