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