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