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