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