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