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