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