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