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