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