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