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