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