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