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