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