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