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