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