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