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