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