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