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