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