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