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