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