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