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