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