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