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