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