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