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