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