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