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