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