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