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