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