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