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