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