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