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