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