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