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