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