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