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