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