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