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