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