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