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