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