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